blob: ee5dd0d07a29ffa3673f8d853057e2cdb18c996b [file] [log] [blame]
Thomas Vachuska6b331262015-04-27 11:09:07 -07001<?xml version="1.0"?>
Thomas Vachuska58de4162015-09-10 16:15:33 -07002<!--
Brian O'Connor5ab426f2016-04-09 01:19:45 -07003 ~ Copyright 2015-present Open Networking Laboratory
Thomas Vachuska58de4162015-09-10 16:15:33 -07004 ~
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 Vachuska6b331262015-04-27 11:09:07 -070019 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'Connor4db1c332015-06-05 20:13:56 -070027 <artifactId>onlab-utils</artifactId>
Brian O'Connor955c3162016-03-10 15:27:19 -080028 <version>1.6.0-SNAPSHOT</version>
Brian O'Connor4db1c332015-06-05 20:13:56 -070029 <relativePath>../pom.xml</relativePath>
Thomas Vachuska6b331262015-04-27 11:09:07 -070030 </parent>
31
32 <artifactId>jdvue</artifactId>
Thomas Vachuska6b331262015-04-27 11:09:07 -070033 <packaging>jar</packaging>
34
35 <description>Java Package Dependency &amp; Analyzer</description>
36
Brian O'Connor4db1c332015-06-05 20:13:56 -070037 <properties>
38 <!-- FIXME skipping checkstyle for now -->
39 <checkstyle.skip>true</checkstyle.skip>
40 </properties>
41
Thomas Vachuska6b331262015-04-27 11:09:07 -070042 <dependencies>
43 <dependency>
44 <groupId>com.google.guava</groupId>
45 <artifactId>guava</artifactId>
Jian Lie4583fd2016-01-22 10:02:43 -080046 <version>19.0</version>
Thomas Vachuska6b331262015-04-27 11:09:07 -070047 </dependency>
48 <dependency>
49 <groupId>com.google.guava</groupId>
50 <artifactId>guava-testlib</artifactId>
Jian Lie4583fd2016-01-22 10:02:43 -080051 <version>19.0</version>
Thomas Vachuska6b331262015-04-27 11:09:07 -070052 <scope>test</scope>
53 </dependency>
54 <dependency>
55 <groupId>com.fasterxml.jackson.core</groupId>
56 <artifactId>jackson-databind</artifactId>
Jian Li0a119fe2016-04-13 14:24:20 -070057 <version>2.7.3</version>
Thomas Vachuska80aa1ef2015-07-24 13:17:01 -070058 <scope>compile</scope>
59 </dependency>
60 <dependency>
61 <groupId>com.fasterxml.jackson.core</groupId>
62 <artifactId>jackson-annotations</artifactId>
Jian Li0a119fe2016-04-13 14:24:20 -070063 <version>2.7.3</version>
Thomas Vachuska80aa1ef2015-07-24 13:17:01 -070064 <scope>compile</scope>
Thomas Vachuska6b331262015-04-27 11:09:07 -070065 </dependency>
66 <dependency>
Brian O'Connor4db1c332015-06-05 20:13:56 -070067 <groupId>org.onosproject</groupId>
68 <artifactId>onlab-junit</artifactId>
Thomas Vachuska6b331262015-04-27 11:09:07 -070069 <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 Lie4583fd2016-01-22 10:02:43 -080086 <version>2.4.2</version>
Thomas Vachuska6b331262015-04-27 11:09:07 -070087 <configuration>
88 <transformers>
Thomas Vachuska58de4162015-09-10 16:15:33 -070089 <transformer
90 implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
91 <mainClass>org.onlab.jdvue.DependencyViewer
92 </mainClass>
Thomas Vachuska6b331262015-04-27 11:09:07 -070093 </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>