1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
4 Copyright (c) 2015 Cisco Systems, Inc. and others. All rights reserved.
6 This program and the accompanying materials are made available under the
7 terms of the Eclipse Public License v1.0 which accompanies this distribution,
8 and is available at http://www.eclipse.org/legal/epl-v10.html
10 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11 <modelVersion>4.0.0</modelVersion>
13 <groupId>org.opendaylight.odlparent</groupId>
14 <artifactId>odlparent</artifactId>
15 <version>3.1.3</version>
19 <groupId>org.opendaylight.yangtools</groupId>
20 <artifactId>yang-validation-tool</artifactId>
21 <version>2.0.6.2-SNAPSHOT</version>
23 <dependencyManagement>
26 <groupId>org.opendaylight.yangtools</groupId>
27 <artifactId>yangtools-artifacts</artifactId>
28 <version>2.0.6.2-SNAPSHOT</version>
33 </dependencyManagement>
37 <groupId>org.opendaylight.yangtools</groupId>
38 <artifactId>yang-test-util</artifactId>
39 <scope>compile</scope>
42 <groupId>net.sourceforge.argparse4j</groupId>
43 <artifactId>argparse4j</artifactId>
44 <version>0.6.0</version>
47 <groupId>ch.qos.logback</groupId>
48 <artifactId>logback-classic</artifactId>
49 <scope>compile</scope>
52 <groupId>com.google.guava</groupId>
53 <artifactId>guava</artifactId>
60 <groupId>org.apache.maven.plugins</groupId>
61 <artifactId>maven-shade-plugin</artifactId>
68 <phase>package</phase>
70 <!-- TODO investigate why jar fails without this
74 <artifact>*:*</artifact>
76 <exclude>META-INF/*.SF</exclude>
77 <exclude>META-INF/*.DSA</exclude>
78 <exclude>META-INF/*.RSA</exclude>
83 <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
84 <mainClass>org.opendaylight.yangtools.yang.validation.tool.Main</mainClass>
87 <shadedArtifactAttached>true</shadedArtifactAttached>
88 <shadedClassifierName>executable</shadedClassifierName>