blob: c2b5d8aebf4ab5078b9c02a1dcdfd6900f546198 [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
26 <artifactId>onos-maven-plugin</artifactId>
Brian O'Connorfe132782015-08-27 11:56:59 -070027 <version>1.6-SNAPSHOT</version>
Thomas Vachuska8c8b0372015-03-10 11:11:24 -070028 <packaging>maven-plugin</packaging>
29
Thomas Vachuskaa98ae7f2015-04-14 14:00:36 -070030 <description>Maven plugin for packaging ONOS applications or generating
31 component configuration resources
32 </description>
Thomas Vachuska8c8b0372015-03-10 11:11:24 -070033
34 <dependencies>
35 <dependency>
36 <groupId>org.apache.maven</groupId>
37 <artifactId>maven-plugin-api</artifactId>
38 <version>2.0</version>
39 </dependency>
40
41 <dependency>
Thomas Vachuskaa98ae7f2015-04-14 14:00:36 -070042 <groupId>org.apache.maven</groupId>
43 <artifactId>maven-project</artifactId>
44 <version>2.0</version>
45 </dependency>
46
47 <dependency>
Thomas Vachuska8c8b0372015-03-10 11:11:24 -070048 <groupId>com.thoughtworks.qdox</groupId>
49 <artifactId>qdox</artifactId>
50 <version>2.0-M3</version>
51 </dependency>
52
Thomas Vachuskaa98ae7f2015-04-14 14:00:36 -070053 <dependency>
54 <groupId>com.google.guava</groupId>
55 <artifactId>guava</artifactId>
56 <version>18.0</version>
57 </dependency>
58
59 <dependency>
60 <groupId>commons-collections</groupId>
61 <artifactId>commons-collections</artifactId>
62 <version>3.2.1</version>
63 </dependency>
64
65 <dependency>
66 <groupId>commons-configuration</groupId>
67 <artifactId>commons-configuration</artifactId>
68 <version>1.10</version>
69 </dependency>
70
Thomas Vachuska8c8b0372015-03-10 11:11:24 -070071 <!-- dependencies to annotations -->
72 <dependency>
73 <groupId>org.apache.maven.plugin-tools</groupId>
74 <artifactId>maven-plugin-annotations</artifactId>
75 <version>3.4</version>
76 <scope>provided</scope>
77 </dependency>
Sahil Lele372d1f32015-07-31 15:01:41 -070078 <dependency>
79 <groupId>com.fasterxml.jackson.core</groupId>
80 <artifactId>jackson-databind</artifactId>
81 <version>2.4.2</version>
82 </dependency>
83 <dependency>
84 <groupId>com.fasterxml.jackson.core</groupId>
85 <artifactId>jackson-annotations</artifactId>
86 <version>2.4.2</version>
87 </dependency>
andreafaa2c4b2015-11-16 13:48:39 -080088 <dependency>
89 <groupId>commons-io</groupId>
90 <artifactId>commons-io</artifactId>
91 <version>2.4</version>
92 </dependency>
Thomas Vachuska8c8b0372015-03-10 11:11:24 -070093 </dependencies>
94
95 <build>
96 <plugins>
97 <plugin>
98 <groupId>org.apache.maven.plugins</groupId>
99 <artifactId>maven-compiler-plugin</artifactId>
100 <version>2.5.1</version>
101 <configuration>
102 <source>1.8</source>
103 <target>1.8</target>
104 </configuration>
105 </plugin>
106
107 <plugin>
108 <groupId>org.apache.maven.plugins</groupId>
109 <artifactId>maven-plugin-plugin</artifactId>
110 <version>3.4</version>
111 <executions>
112 <execution>
113 <id>default-descriptor</id>
114 <phase>process-classes</phase>
115 </execution>
116 <!-- if you want to generate help goal -->
117 <execution>
118 <id>help-goal</id>
119 <goals>
120 <goal>helpmojo</goal>
121 </goals>
122 </execution>
123 </executions>
124 </plugin>
125 </plugins>
126 </build>
Brian O'Connor4322fc12015-04-14 15:00:25 -0700127</project>