blob: 2d36c86a7a2e95f23f09be1cfe700bbbfa2d1b87 [file] [log] [blame]
Thomas Vachuska8c8b0372015-03-10 11:11:24 -07001<!--
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 ~ Copyright 2015-present Open Networking Laboratory
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 -->
16<project>
17 <modelVersion>4.0.0</modelVersion>
18
19 <parent>
20 <groupId>org.onosproject</groupId>
21 <artifactId>onos-base</artifactId>
22 <version>1</version>
23 <relativePath>../../build/pom.xml</relativePath>
24 </parent>
25
Brian O'Connore261ab22015-12-04 22:42:06 -080026 <groupId>org.onosproject</groupId>
Thomas Vachuska8c8b0372015-03-10 11:11:24 -070027 <artifactId>onos-maven-plugin</artifactId>
Thomas Vachuska5064bac2016-08-09 13:31:44 -070028 <version>1.11-SNAPSHOT</version>
Thomas Vachuska8c8b0372015-03-10 11:11:24 -070029 <packaging>maven-plugin</packaging>
30
Thomas Vachuskaa98ae7f2015-04-14 14:00:36 -070031 <description>Maven plugin for packaging ONOS applications or generating
32 component configuration resources
33 </description>
Thomas Vachuska8c8b0372015-03-10 11:11:24 -070034
35 <dependencies>
36 <dependency>
37 <groupId>org.apache.maven</groupId>
38 <artifactId>maven-plugin-api</artifactId>
Jian Li1f820042016-01-17 23:51:52 -080039 <version>3.3.9</version>
Thomas Vachuska8c8b0372015-03-10 11:11:24 -070040 </dependency>
41
42 <dependency>
Thomas Vachuskaa98ae7f2015-04-14 14:00:36 -070043 <groupId>org.apache.maven</groupId>
44 <artifactId>maven-project</artifactId>
Jian Li1f820042016-01-17 23:51:52 -080045 <version>2.2.1</version>
Thomas Vachuskaa98ae7f2015-04-14 14:00:36 -070046 </dependency>
47
48 <dependency>
Thomas Vachuska8c8b0372015-03-10 11:11:24 -070049 <groupId>com.thoughtworks.qdox</groupId>
50 <artifactId>qdox</artifactId>
51 <version>2.0-M3</version>
52 </dependency>
53
Thomas Vachuskaa98ae7f2015-04-14 14:00:36 -070054 <dependency>
55 <groupId>com.google.guava</groupId>
56 <artifactId>guava</artifactId>
Jian Li1f820042016-01-17 23:51:52 -080057 <version>19.0</version>
Thomas Vachuskaa98ae7f2015-04-14 14:00:36 -070058 </dependency>
59
60 <dependency>
61 <groupId>commons-collections</groupId>
62 <artifactId>commons-collections</artifactId>
Jian Li1f820042016-01-17 23:51:52 -080063 <version>3.2.2</version>
Thomas Vachuskaa98ae7f2015-04-14 14:00:36 -070064 </dependency>
65
66 <dependency>
67 <groupId>commons-configuration</groupId>
68 <artifactId>commons-configuration</artifactId>
69 <version>1.10</version>
70 </dependency>
71
Thomas Vachuska8c8b0372015-03-10 11:11:24 -070072 <!-- dependencies to annotations -->
73 <dependency>
74 <groupId>org.apache.maven.plugin-tools</groupId>
75 <artifactId>maven-plugin-annotations</artifactId>
76 <version>3.4</version>
77 <scope>provided</scope>
78 </dependency>
Sahil Lele372d1f32015-07-31 15:01:41 -070079 <dependency>
80 <groupId>com.fasterxml.jackson.core</groupId>
81 <artifactId>jackson-databind</artifactId>
Jian Li43f103d2017-02-03 02:00:35 +090082 <version>2.8.6</version>
Sahil Lele372d1f32015-07-31 15:01:41 -070083 </dependency>
84 <dependency>
85 <groupId>com.fasterxml.jackson.core</groupId>
86 <artifactId>jackson-annotations</artifactId>
Jian Li43f103d2017-02-03 02:00:35 +090087 <version>2.8.6</version>
Sahil Lele372d1f32015-07-31 15:01:41 -070088 </dependency>
andreafaa2c4b2015-11-16 13:48:39 -080089 <dependency>
90 <groupId>commons-io</groupId>
91 <artifactId>commons-io</artifactId>
92 <version>2.4</version>
93 </dependency>
Andrea Campanella82baf6b2015-12-14 10:23:37 -080094 <dependency>
95 <groupId>com.google.code.gson</groupId>
96 <artifactId>gson</artifactId>
97 <version>2.5</version>
98 </dependency>
Thomas Vachuska8c8b0372015-03-10 11:11:24 -070099 </dependencies>
100
101 <build>
102 <plugins>
103 <plugin>
104 <groupId>org.apache.maven.plugins</groupId>
105 <artifactId>maven-compiler-plugin</artifactId>
106 <version>2.5.1</version>
107 <configuration>
108 <source>1.8</source>
109 <target>1.8</target>
110 </configuration>
111 </plugin>
112
113 <plugin>
114 <groupId>org.apache.maven.plugins</groupId>
115 <artifactId>maven-plugin-plugin</artifactId>
116 <version>3.4</version>
117 <executions>
118 <execution>
119 <id>default-descriptor</id>
120 <phase>process-classes</phase>
121 </execution>
122 <!-- if you want to generate help goal -->
123 <execution>
124 <id>help-goal</id>
125 <goals>
126 <goal>helpmojo</goal>
127 </goals>
128 </execution>
129 </executions>
130 </plugin>
131 </plugins>
132 </build>
Thomas Vachuska9700ee62016-03-01 20:00:49 -0800133</project>