Thomas Vachuska | 6b33126 | 2015-04-27 11:09:07 -0700 | [diff] [blame] | 1 | <?xml version="1.0"?> |
Thomas Vachuska | 58de416 | 2015-09-10 16:15:33 -0700 | [diff] [blame] | 2 | <!-- |
| 3 | ~ Copyright 2015 Open Networking Laboratory |
| 4 | ~ |
| 5 | ~ Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | ~ you may not use this file except in compliance with the License. |
| 7 | ~ You may obtain a copy of the License at |
| 8 | ~ |
| 9 | ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | ~ |
| 11 | ~ Unless required by applicable law or agreed to in writing, software |
| 12 | ~ distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | ~ See the License for the specific language governing permissions and |
| 15 | ~ limitations under the License. |
| 16 | --> |
| 17 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 18 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
Thomas Vachuska | 6b33126 | 2015-04-27 11:09:07 -0700 | [diff] [blame] | 19 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 20 | <modelVersion>4.0.0</modelVersion> |
| 21 | <prerequisites> |
| 22 | <maven>3.0.4</maven> |
| 23 | </prerequisites> |
| 24 | |
| 25 | <parent> |
| 26 | <groupId>org.onosproject</groupId> |
Brian O'Connor | 4db1c33 | 2015-06-05 20:13:56 -0700 | [diff] [blame] | 27 | <artifactId>onlab-utils</artifactId> |
Brian O'Connor | 880dc20d | 2015-12-16 22:53:14 -0800 | [diff] [blame] | 28 | <version>1.5.0-SNAPSHOT</version> |
Brian O'Connor | 4db1c33 | 2015-06-05 20:13:56 -0700 | [diff] [blame] | 29 | <relativePath>../pom.xml</relativePath> |
Thomas Vachuska | 6b33126 | 2015-04-27 11:09:07 -0700 | [diff] [blame] | 30 | </parent> |
| 31 | |
| 32 | <artifactId>jdvue</artifactId> |
Thomas Vachuska | 6b33126 | 2015-04-27 11:09:07 -0700 | [diff] [blame] | 33 | <packaging>jar</packaging> |
| 34 | |
| 35 | <description>Java Package Dependency & Analyzer</description> |
| 36 | |
Brian O'Connor | 4db1c33 | 2015-06-05 20:13:56 -0700 | [diff] [blame] | 37 | <properties> |
| 38 | <!-- FIXME skipping checkstyle for now --> |
| 39 | <checkstyle.skip>true</checkstyle.skip> |
| 40 | </properties> |
| 41 | |
Thomas Vachuska | 6b33126 | 2015-04-27 11:09:07 -0700 | [diff] [blame] | 42 | <dependencies> |
| 43 | <dependency> |
| 44 | <groupId>com.google.guava</groupId> |
| 45 | <artifactId>guava</artifactId> |
Jian Li | e4583fd | 2016-01-22 10:02:43 -0800 | [diff] [blame] | 46 | <version>19.0</version> |
Thomas Vachuska | 6b33126 | 2015-04-27 11:09:07 -0700 | [diff] [blame] | 47 | </dependency> |
| 48 | <dependency> |
| 49 | <groupId>com.google.guava</groupId> |
| 50 | <artifactId>guava-testlib</artifactId> |
Jian Li | e4583fd | 2016-01-22 10:02:43 -0800 | [diff] [blame] | 51 | <version>19.0</version> |
Thomas Vachuska | 6b33126 | 2015-04-27 11:09:07 -0700 | [diff] [blame] | 52 | <scope>test</scope> |
| 53 | </dependency> |
| 54 | <dependency> |
| 55 | <groupId>com.fasterxml.jackson.core</groupId> |
| 56 | <artifactId>jackson-databind</artifactId> |
Jian Li | a9a1bbd | 2016-01-22 00:34:49 -0800 | [diff] [blame] | 57 | <version>2.7.0</version> |
Thomas Vachuska | 80aa1ef | 2015-07-24 13:17:01 -0700 | [diff] [blame] | 58 | <scope>compile</scope> |
| 59 | </dependency> |
| 60 | <dependency> |
| 61 | <groupId>com.fasterxml.jackson.core</groupId> |
| 62 | <artifactId>jackson-annotations</artifactId> |
Jian Li | a9a1bbd | 2016-01-22 00:34:49 -0800 | [diff] [blame] | 63 | <version>2.7.0</version> |
Thomas Vachuska | 80aa1ef | 2015-07-24 13:17:01 -0700 | [diff] [blame] | 64 | <scope>compile</scope> |
Thomas Vachuska | 6b33126 | 2015-04-27 11:09:07 -0700 | [diff] [blame] | 65 | </dependency> |
| 66 | <dependency> |
Brian O'Connor | 4db1c33 | 2015-06-05 20:13:56 -0700 | [diff] [blame] | 67 | <groupId>org.onosproject</groupId> |
| 68 | <artifactId>onlab-junit</artifactId> |
Thomas Vachuska | 6b33126 | 2015-04-27 11:09:07 -0700 | [diff] [blame] | 69 | <scope>test</scope> |
| 70 | </dependency> |
| 71 | </dependencies> |
| 72 | |
| 73 | <build> |
| 74 | <plugins> |
| 75 | <plugin> |
| 76 | <artifactId>maven-compiler-plugin</artifactId> |
| 77 | <version>3.1</version> |
| 78 | <configuration> |
| 79 | <source>1.8</source> |
| 80 | <target>1.8</target> |
| 81 | </configuration> |
| 82 | </plugin> |
| 83 | <plugin> |
| 84 | <groupId>org.apache.maven.plugins</groupId> |
| 85 | <artifactId>maven-shade-plugin</artifactId> |
Jian Li | e4583fd | 2016-01-22 10:02:43 -0800 | [diff] [blame] | 86 | <version>2.4.2</version> |
Thomas Vachuska | 6b33126 | 2015-04-27 11:09:07 -0700 | [diff] [blame] | 87 | <configuration> |
| 88 | <transformers> |
Thomas Vachuska | 58de416 | 2015-09-10 16:15:33 -0700 | [diff] [blame] | 89 | <transformer |
| 90 | implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> |
| 91 | <mainClass>org.onlab.jdvue.DependencyViewer |
| 92 | </mainClass> |
Thomas Vachuska | 6b33126 | 2015-04-27 11:09:07 -0700 | [diff] [blame] | 93 | </transformer> |
| 94 | </transformers> |
| 95 | </configuration> |
| 96 | <executions> |
| 97 | <execution> |
| 98 | <phase>package</phase> |
| 99 | <goals> |
| 100 | <goal>shade</goal> |
| 101 | </goals> |
| 102 | </execution> |
| 103 | </executions> |
| 104 | </plugin> |
| 105 | </plugins> |
| 106 | </build> |
| 107 | |
| 108 | </project> |