Thomas Vachuska | 8c8b037 | 2015-03-10 11:11:24 -0700 | [diff] [blame] | 1 | <!-- |
Brian O'Connor | 5ab426f | 2016-04-09 01:19:45 -0700 | [diff] [blame] | 2 | ~ Copyright 2015-present Open Networking Laboratory |
Thomas Vachuska | 8c8b037 | 2015-03-10 11:11:24 -0700 | [diff] [blame] | 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'Connor | e261ab2 | 2015-12-04 22:42:06 -0800 | [diff] [blame] | 26 | <groupId>org.onosproject</groupId> |
Thomas Vachuska | 8c8b037 | 2015-03-10 11:11:24 -0700 | [diff] [blame] | 27 | <artifactId>onos-maven-plugin</artifactId> |
Thomas Vachuska | dff797b | 2016-03-07 17:56:07 -0800 | [diff] [blame] | 28 | <version>1.10-SNAPSHOT</version> |
Thomas Vachuska | 8c8b037 | 2015-03-10 11:11:24 -0700 | [diff] [blame] | 29 | <packaging>maven-plugin</packaging> |
| 30 | |
Thomas Vachuska | a98ae7f | 2015-04-14 14:00:36 -0700 | [diff] [blame] | 31 | <description>Maven plugin for packaging ONOS applications or generating |
| 32 | component configuration resources |
| 33 | </description> |
Thomas Vachuska | 8c8b037 | 2015-03-10 11:11:24 -0700 | [diff] [blame] | 34 | |
| 35 | <dependencies> |
| 36 | <dependency> |
| 37 | <groupId>org.apache.maven</groupId> |
| 38 | <artifactId>maven-plugin-api</artifactId> |
Jian Li | 1f82004 | 2016-01-17 23:51:52 -0800 | [diff] [blame] | 39 | <version>3.3.9</version> |
Thomas Vachuska | 8c8b037 | 2015-03-10 11:11:24 -0700 | [diff] [blame] | 40 | </dependency> |
| 41 | |
| 42 | <dependency> |
Thomas Vachuska | a98ae7f | 2015-04-14 14:00:36 -0700 | [diff] [blame] | 43 | <groupId>org.apache.maven</groupId> |
| 44 | <artifactId>maven-project</artifactId> |
Jian Li | 1f82004 | 2016-01-17 23:51:52 -0800 | [diff] [blame] | 45 | <version>2.2.1</version> |
Thomas Vachuska | a98ae7f | 2015-04-14 14:00:36 -0700 | [diff] [blame] | 46 | </dependency> |
| 47 | |
| 48 | <dependency> |
Thomas Vachuska | 8c8b037 | 2015-03-10 11:11:24 -0700 | [diff] [blame] | 49 | <groupId>com.thoughtworks.qdox</groupId> |
| 50 | <artifactId>qdox</artifactId> |
| 51 | <version>2.0-M3</version> |
| 52 | </dependency> |
| 53 | |
Thomas Vachuska | a98ae7f | 2015-04-14 14:00:36 -0700 | [diff] [blame] | 54 | <dependency> |
| 55 | <groupId>com.google.guava</groupId> |
| 56 | <artifactId>guava</artifactId> |
Jian Li | 1f82004 | 2016-01-17 23:51:52 -0800 | [diff] [blame] | 57 | <version>19.0</version> |
Thomas Vachuska | a98ae7f | 2015-04-14 14:00:36 -0700 | [diff] [blame] | 58 | </dependency> |
| 59 | |
| 60 | <dependency> |
| 61 | <groupId>commons-collections</groupId> |
| 62 | <artifactId>commons-collections</artifactId> |
Jian Li | 1f82004 | 2016-01-17 23:51:52 -0800 | [diff] [blame] | 63 | <version>3.2.2</version> |
Thomas Vachuska | a98ae7f | 2015-04-14 14:00:36 -0700 | [diff] [blame] | 64 | </dependency> |
| 65 | |
| 66 | <dependency> |
| 67 | <groupId>commons-configuration</groupId> |
| 68 | <artifactId>commons-configuration</artifactId> |
| 69 | <version>1.10</version> |
| 70 | </dependency> |
| 71 | |
Thomas Vachuska | 8c8b037 | 2015-03-10 11:11:24 -0700 | [diff] [blame] | 72 | <!-- 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 Lele | 372d1f3 | 2015-07-31 15:01:41 -0700 | [diff] [blame] | 79 | <dependency> |
| 80 | <groupId>com.fasterxml.jackson.core</groupId> |
| 81 | <artifactId>jackson-databind</artifactId> |
Jian Li | 0a119fe | 2016-04-13 14:24:20 -0700 | [diff] [blame] | 82 | <version>2.7.3</version> |
Sahil Lele | 372d1f3 | 2015-07-31 15:01:41 -0700 | [diff] [blame] | 83 | </dependency> |
| 84 | <dependency> |
| 85 | <groupId>com.fasterxml.jackson.core</groupId> |
| 86 | <artifactId>jackson-annotations</artifactId> |
Jian Li | 0a119fe | 2016-04-13 14:24:20 -0700 | [diff] [blame] | 87 | <version>2.7.3</version> |
Sahil Lele | 372d1f3 | 2015-07-31 15:01:41 -0700 | [diff] [blame] | 88 | </dependency> |
andrea | faa2c4b | 2015-11-16 13:48:39 -0800 | [diff] [blame] | 89 | <dependency> |
| 90 | <groupId>commons-io</groupId> |
| 91 | <artifactId>commons-io</artifactId> |
| 92 | <version>2.4</version> |
| 93 | </dependency> |
Andrea Campanella | 82baf6b | 2015-12-14 10:23:37 -0800 | [diff] [blame] | 94 | <dependency> |
| 95 | <groupId>com.google.code.gson</groupId> |
| 96 | <artifactId>gson</artifactId> |
| 97 | <version>2.5</version> |
| 98 | </dependency> |
Thomas Vachuska | 8c8b037 | 2015-03-10 11:11:24 -0700 | [diff] [blame] | 99 | </dependencies> |
| 100 | |
| 101 | <build> |
| 102 | <plugins> |
| 103 | <plugin> |
| 104 | <groupId>org.apache.maven.plugins</groupId> |
| 105 | <artifactId>maven-compiler-plugin</artifactId> |
| 106 | <version>2.5.1</version> |
| 107 | <configuration> |
| 108 | <source>1.8</source> |
| 109 | <target>1.8</target> |
| 110 | </configuration> |
| 111 | </plugin> |
| 112 | |
| 113 | <plugin> |
| 114 | <groupId>org.apache.maven.plugins</groupId> |
| 115 | <artifactId>maven-plugin-plugin</artifactId> |
| 116 | <version>3.4</version> |
| 117 | <executions> |
| 118 | <execution> |
| 119 | <id>default-descriptor</id> |
| 120 | <phase>process-classes</phase> |
| 121 | </execution> |
| 122 | <!-- if you want to generate help goal --> |
| 123 | <execution> |
| 124 | <id>help-goal</id> |
| 125 | <goals> |
| 126 | <goal>helpmojo</goal> |
| 127 | </goals> |
| 128 | </execution> |
| 129 | </executions> |
| 130 | </plugin> |
| 131 | </plugins> |
| 132 | </build> |
Thomas Vachuska | 9700ee6 | 2016-03-01 20:00:49 -0800 | [diff] [blame] | 133 | </project> |