Thomas Vachuska | 6b33126 | 2015-04-27 11:09:07 -0700 | [diff] [blame] | 1 | <?xml version="1.0"?> |
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | <modelVersion>4.0.0</modelVersion> |
| 5 | <prerequisites> |
| 6 | <maven>3.0.4</maven> |
| 7 | </prerequisites> |
| 8 | |
| 9 | <parent> |
| 10 | <groupId>org.onosproject</groupId> |
| 11 | <artifactId>onos-base</artifactId> |
| 12 | <version>1</version> |
| 13 | <relativePath>../../build/pom.xml</relativePath> |
| 14 | </parent> |
| 15 | |
| 16 | <artifactId>jdvue</artifactId> |
| 17 | <version>1.2.0-SNAPSHOT</version> |
| 18 | <packaging>jar</packaging> |
| 19 | |
| 20 | <description>Java Package Dependency & Analyzer</description> |
| 21 | |
| 22 | <dependencies> |
| 23 | <dependency> |
| 24 | <groupId>com.google.guava</groupId> |
| 25 | <artifactId>guava</artifactId> |
| 26 | <version>18.0</version> |
| 27 | </dependency> |
| 28 | <dependency> |
| 29 | <groupId>com.google.guava</groupId> |
| 30 | <artifactId>guava-testlib</artifactId> |
| 31 | <version>18.0</version> |
| 32 | <scope>test</scope> |
| 33 | </dependency> |
| 34 | <dependency> |
| 35 | <groupId>com.fasterxml.jackson.core</groupId> |
| 36 | <artifactId>jackson-databind</artifactId> |
| 37 | <version>2.2.2</version> |
| 38 | </dependency> |
| 39 | <dependency> |
| 40 | <groupId>junit</groupId> |
| 41 | <artifactId>junit</artifactId> |
| 42 | <version>4.11</version> |
| 43 | <scope>test</scope> |
| 44 | </dependency> |
| 45 | </dependencies> |
| 46 | |
| 47 | <build> |
| 48 | <plugins> |
| 49 | <plugin> |
| 50 | <artifactId>maven-compiler-plugin</artifactId> |
| 51 | <version>3.1</version> |
| 52 | <configuration> |
| 53 | <source>1.8</source> |
| 54 | <target>1.8</target> |
| 55 | </configuration> |
| 56 | </plugin> |
| 57 | <plugin> |
| 58 | <groupId>org.apache.maven.plugins</groupId> |
| 59 | <artifactId>maven-shade-plugin</artifactId> |
| 60 | <version>2.3</version> |
| 61 | <configuration> |
| 62 | <transformers> |
| 63 | <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> |
| 64 | <mainClass>org.onlab.jdvue.DependencyViewer</mainClass> |
| 65 | </transformer> |
| 66 | </transformers> |
| 67 | </configuration> |
| 68 | <executions> |
| 69 | <execution> |
| 70 | <phase>package</phase> |
| 71 | <goals> |
| 72 | <goal>shade</goal> |
| 73 | </goals> |
| 74 | </execution> |
| 75 | </executions> |
| 76 | </plugin> |
| 77 | </plugins> |
| 78 | </build> |
| 79 | |
| 80 | </project> |