Thomas Vachuska | 8c8b037 | 2015-03-10 11:11:24 -0700 | [diff] [blame] | 1 | <!-- |
| 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'Connor | fe13278 | 2015-08-27 11:56:59 -0700 | [diff] [blame] | 27 | <version>1.6-SNAPSHOT</version> |
Thomas Vachuska | 8c8b037 | 2015-03-10 11:11:24 -0700 | [diff] [blame] | 28 | <packaging>maven-plugin</packaging> |
| 29 | |
Thomas Vachuska | a98ae7f | 2015-04-14 14:00:36 -0700 | [diff] [blame] | 30 | <description>Maven plugin for packaging ONOS applications or generating |
| 31 | component configuration resources |
| 32 | </description> |
Thomas Vachuska | 8c8b037 | 2015-03-10 11:11:24 -0700 | [diff] [blame] | 33 | |
| 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 Vachuska | a98ae7f | 2015-04-14 14:00:36 -0700 | [diff] [blame] | 42 | <groupId>org.apache.maven</groupId> |
| 43 | <artifactId>maven-project</artifactId> |
| 44 | <version>2.0</version> |
| 45 | </dependency> |
| 46 | |
| 47 | <dependency> |
Thomas Vachuska | 8c8b037 | 2015-03-10 11:11:24 -0700 | [diff] [blame] | 48 | <groupId>com.thoughtworks.qdox</groupId> |
| 49 | <artifactId>qdox</artifactId> |
| 50 | <version>2.0-M3</version> |
| 51 | </dependency> |
| 52 | |
Thomas Vachuska | a98ae7f | 2015-04-14 14:00:36 -0700 | [diff] [blame] | 53 | <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 Vachuska | 8c8b037 | 2015-03-10 11:11:24 -0700 | [diff] [blame] | 71 | <!-- 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 Lele | 372d1f3 | 2015-07-31 15:01:41 -0700 | [diff] [blame] | 78 | <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> |
andrea | faa2c4b | 2015-11-16 13:48:39 -0800 | [diff] [blame] | 88 | <dependency> |
| 89 | <groupId>commons-io</groupId> |
| 90 | <artifactId>commons-io</artifactId> |
| 91 | <version>2.4</version> |
| 92 | </dependency> |
Thomas Vachuska | 8c8b037 | 2015-03-10 11:11:24 -0700 | [diff] [blame] | 93 | </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'Connor | 4322fc1 | 2015-04-14 15:00:25 -0700 | [diff] [blame] | 127 | </project> |