blob: f9cc27f42c870b4708a924d0314143c024add1f8 [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'Connore642f7c2016-05-23 18:33:04 -070028 <version>1.7.0-SNAPSHOT</version>
Thomas Vachuska6b331262015-04-27 11:09:07 -070029 </parent>
30
31 <artifactId>jdvue</artifactId>
Thomas Vachuska6b331262015-04-27 11:09:07 -070032 <packaging>jar</packaging>
33
34 <description>Java Package Dependency &amp; Analyzer</description>
35
Brian O'Connor4db1c332015-06-05 20:13:56 -070036 <properties>
37 <!-- FIXME skipping checkstyle for now -->
38 <checkstyle.skip>true</checkstyle.skip>
39 </properties>
40
Thomas Vachuska6b331262015-04-27 11:09:07 -070041 <dependencies>
42 <dependency>
43 <groupId>com.google.guava</groupId>
44 <artifactId>guava</artifactId>
Jian Lie4583fd2016-01-22 10:02:43 -080045 <version>19.0</version>
Thomas Vachuska6b331262015-04-27 11:09:07 -070046 </dependency>
47 <dependency>
48 <groupId>com.google.guava</groupId>
49 <artifactId>guava-testlib</artifactId>
Jian Lie4583fd2016-01-22 10:02:43 -080050 <version>19.0</version>
Thomas Vachuska6b331262015-04-27 11:09:07 -070051 <scope>test</scope>
52 </dependency>
53 <dependency>
54 <groupId>com.fasterxml.jackson.core</groupId>
55 <artifactId>jackson-databind</artifactId>
Jian Li0a119fe2016-04-13 14:24:20 -070056 <version>2.7.3</version>
Thomas Vachuska80aa1ef2015-07-24 13:17:01 -070057 <scope>compile</scope>
58 </dependency>
59 <dependency>
60 <groupId>com.fasterxml.jackson.core</groupId>
61 <artifactId>jackson-annotations</artifactId>
Jian Li0a119fe2016-04-13 14:24:20 -070062 <version>2.7.3</version>
Thomas Vachuska80aa1ef2015-07-24 13:17:01 -070063 <scope>compile</scope>
Thomas Vachuska6b331262015-04-27 11:09:07 -070064 </dependency>
65 <dependency>
Brian O'Connor4db1c332015-06-05 20:13:56 -070066 <groupId>org.onosproject</groupId>
67 <artifactId>onlab-junit</artifactId>
Thomas Vachuska6b331262015-04-27 11:09:07 -070068 <scope>test</scope>
69 </dependency>
70 </dependencies>
71
72 <build>
73 <plugins>
74 <plugin>
75 <artifactId>maven-compiler-plugin</artifactId>
76 <version>3.1</version>
77 <configuration>
78 <source>1.8</source>
79 <target>1.8</target>
80 </configuration>
81 </plugin>
82 <plugin>
83 <groupId>org.apache.maven.plugins</groupId>
84 <artifactId>maven-shade-plugin</artifactId>
Jian Lie4583fd2016-01-22 10:02:43 -080085 <version>2.4.2</version>
Thomas Vachuska6b331262015-04-27 11:09:07 -070086 <configuration>
87 <transformers>
Thomas Vachuska58de4162015-09-10 16:15:33 -070088 <transformer
89 implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
90 <mainClass>org.onlab.jdvue.DependencyViewer
91 </mainClass>
Thomas Vachuska6b331262015-04-27 11:09:07 -070092 </transformer>
93 </transformers>
94 </configuration>
95 <executions>
96 <execution>
97 <phase>package</phase>
98 <goals>
99 <goal>shade</goal>
100 </goals>
101 </execution>
102 </executions>
103 </plugin>
104 </plugins>
105 </build>
106
107</project>