Bump versions to 13.0.6-SNAPSHOT
[yangtools.git] / tools / yang-validation-tool / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
5
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
9 -->
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>
12     <parent>
13         <groupId>org.opendaylight.odlparent</groupId>
14         <artifactId>odlparent</artifactId>
15         <version>13.1.2</version>
16         <relativePath/>
17     </parent>
18
19     <groupId>org.opendaylight.yangtools</groupId>
20     <artifactId>yang-validation-tool</artifactId>
21     <version>13.0.6-SNAPSHOT</version>
22
23     <properties>
24         <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
25         <doclint>all,-missing</doclint>
26     </properties>
27
28     <dependencyManagement>
29         <dependencies>
30             <dependency>
31                 <groupId>org.opendaylight.yangtools</groupId>
32                 <artifactId>yangtools-artifacts</artifactId>
33                 <version>13.0.6-SNAPSHOT</version>
34                 <scope>import</scope>
35                 <type>pom</type>
36             </dependency>
37         </dependencies>
38     </dependencyManagement>
39
40     <dependencies>
41         <dependency>
42             <groupId>ch.qos.logback</groupId>
43             <artifactId>logback-classic</artifactId>
44             <scope>compile</scope>
45         </dependency>
46         <dependency>
47             <groupId>com.github.spotbugs</groupId>
48             <artifactId>spotbugs-annotations</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>net.sourceforge.argparse4j</groupId>
52             <artifactId>argparse4j</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>org.opendaylight.yangtools</groupId>
56             <artifactId>yang-model-api</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>org.opendaylight.yangtools</groupId>
60             <artifactId>yang-test-util</artifactId>
61             <scope>compile</scope>
62         </dependency>
63     </dependencies>
64
65     <build>
66         <plugins>
67             <plugin>
68                 <groupId>org.apache.maven.plugins</groupId>
69                 <artifactId>maven-shade-plugin</artifactId>
70                 <configuration/>
71                 <executions>
72                     <execution>
73                         <goals>
74                             <goal>shade</goal>
75                         </goals>
76                         <phase>package</phase>
77                         <configuration>
78                             <!-- TODO investigate why jar fails without this
79                                 filter -->
80                             <filters>
81                                 <filter>
82                                     <artifact>*:*</artifact>
83                                     <excludes>
84                                         <exclude>META-INF/*.SF</exclude>
85                                         <exclude>META-INF/*.DSA</exclude>
86                                         <exclude>META-INF/*.RSA</exclude>
87                                     </excludes>
88                                 </filter>
89                             </filters>
90                             <transformers>
91                                 <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
92                                     <mainClass>org.opendaylight.yangtools.yang.validation.tool.Main</mainClass>
93                                 </transformer>
94                             </transformers>
95                             <shadedArtifactAttached>true</shadedArtifactAttached>
96                             <shadedClassifierName>executable</shadedClassifierName>
97                         </configuration>
98                     </execution>
99                 </executions>
100             </plugin>
101         </plugins>
102     </build>
103
104 </project>