blob: c90860b5f4c9cb0328c653259086fba72f6e107a [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'Connor8fa099a2015-05-21 17:27:30 -070027 <version>1.5-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>
Thomas Vachuska8c8b0372015-03-10 11:11:24 -070088 </dependencies>
89
90 <build>
91 <plugins>
92 <plugin>
93 <groupId>org.apache.maven.plugins</groupId>
94 <artifactId>maven-compiler-plugin</artifactId>
95 <version>2.5.1</version>
96 <configuration>
97 <source>1.8</source>
98 <target>1.8</target>
99 </configuration>
100 </plugin>
101
102 <plugin>
103 <groupId>org.apache.maven.plugins</groupId>
104 <artifactId>maven-plugin-plugin</artifactId>
105 <version>3.4</version>
106 <executions>
107 <execution>
108 <id>default-descriptor</id>
109 <phase>process-classes</phase>
110 </execution>
111 <!-- if you want to generate help goal -->
112 <execution>
113 <id>help-goal</id>
114 <goals>
115 <goal>helpmojo</goal>
116 </goals>
117 </execution>
118 </executions>
119 </plugin>
120 </plugins>
121 </build>
Brian O'Connor4322fc12015-04-14 15:00:25 -0700122</project>