blob: a891f32e7193638511449b92917236606f03b621 [file] [log] [blame]
Thomas Vachuska8c8b0372015-03-10 11:11:24 -07001<!--
2 ~ Copyright 2015 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>
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>
Brian O'Connore261ab22015-12-04 22:42:06 -080028 <version>1.6</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>
39 <version>2.0</version>
40 </dependency>
41
42 <dependency>
Thomas Vachuskaa98ae7f2015-04-14 14:00:36 -070043 <groupId>org.apache.maven</groupId>
44 <artifactId>maven-project</artifactId>
45 <version>2.0</version>
46 </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>
57 <version>18.0</version>
58 </dependency>
59
60 <dependency>
61 <groupId>commons-collections</groupId>
62 <artifactId>commons-collections</artifactId>
63 <version>3.2.1</version>
64 </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>
82 <version>2.4.2</version>
83 </dependency>
84 <dependency>
85 <groupId>com.fasterxml.jackson.core</groupId>
86 <artifactId>jackson-annotations</artifactId>
87 <version>2.4.2</version>
88 </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>
Thomas Vachuska8c8b0372015-03-10 11:11:24 -070094 </dependencies>
95
96 <build>
97 <plugins>
98 <plugin>
99 <groupId>org.apache.maven.plugins</groupId>
100 <artifactId>maven-compiler-plugin</artifactId>
101 <version>2.5.1</version>
102 <configuration>
103 <source>1.8</source>
104 <target>1.8</target>
105 </configuration>
106 </plugin>
107
108 <plugin>
109 <groupId>org.apache.maven.plugins</groupId>
110 <artifactId>maven-plugin-plugin</artifactId>
111 <version>3.4</version>
112 <executions>
113 <execution>
114 <id>default-descriptor</id>
115 <phase>process-classes</phase>
116 </execution>
117 <!-- if you want to generate help goal -->
118 <execution>
119 <id>help-goal</id>
120 <goals>
121 <goal>helpmojo</goal>
122 </goals>
123 </execution>
124 </executions>
125 </plugin>
126 </plugins>
127 </build>
Brian O'Connor4322fc12015-04-14 15:00:25 -0700128</project>