blob: a47796334bdf7dd06c274e3f5aca3cd9915e1ce9 [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>
Thomas Vachuskaa98ae7f2015-04-14 14:00:36 -070027 <version>1.2-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>
78 </dependencies>
79
80 <build>
81 <plugins>
82 <plugin>
83 <groupId>org.apache.maven.plugins</groupId>
84 <artifactId>maven-compiler-plugin</artifactId>
85 <version>2.5.1</version>
86 <configuration>
87 <source>1.8</source>
88 <target>1.8</target>
89 </configuration>
90 </plugin>
91
92 <plugin>
93 <groupId>org.apache.maven.plugins</groupId>
94 <artifactId>maven-plugin-plugin</artifactId>
95 <version>3.4</version>
96 <executions>
97 <execution>
98 <id>default-descriptor</id>
99 <phase>process-classes</phase>
100 </execution>
101 <!-- if you want to generate help goal -->
102 <execution>
103 <id>help-goal</id>
104 <goals>
105 <goal>helpmojo</goal>
106 </goals>
107 </execution>
108 </executions>
109 </plugin>
110 </plugins>
111 </build>
112</project>