Bump versions to 11.0.2-SNAPSHOT
[yangtools.git] / tools / yang-model-validator / pom.xml
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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3     <modelVersion>4.0.0</modelVersion>
4     <parent>
5         <groupId>org.opendaylight.odlparent</groupId>
6         <artifactId>odlparent</artifactId>
7         <version>13.0.4</version>
8         <relativePath/>
9     </parent>
10
11     <groupId>org.opendaylight.yangtools</groupId>
12     <artifactId>yang-model-validator</artifactId>
13     <version>11.0.2-SNAPSHOT</version>
14     <name>${project.artifactId}</name>
15     <description>YANG model validator</description>
16
17     <dependencyManagement>
18         <dependencies>
19             <dependency>
20                 <groupId>org.opendaylight.yangtools</groupId>
21                 <artifactId>yangtools-artifacts</artifactId>
22                 <version>11.0.2-SNAPSHOT</version>
23                 <scope>import</scope>
24                 <type>pom</type>
25             </dependency>
26         </dependencies>
27     </dependencyManagement>
28
29     <dependencies>
30         <dependency>
31             <groupId>com.github.spotbugs</groupId>
32             <artifactId>spotbugs-annotations</artifactId>
33         </dependency>
34         <dependency>
35             <groupId>org.opendaylight.yangtools</groupId>
36             <artifactId>yang-parser-impl</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>org.slf4j</groupId>
40             <artifactId>slf4j-api</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>ch.qos.logback</groupId>
44             <artifactId>logback-classic</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>net.sourceforge.argparse4j</groupId>
48             <artifactId>argparse4j</artifactId>
49         </dependency>
50     </dependencies>
51
52     <build>
53         <plugins>
54             <plugin>
55                 <groupId>org.codehaus.mojo</groupId>
56                 <artifactId>build-helper-maven-plugin</artifactId>
57             </plugin>
58             <plugin>
59                 <groupId>org.codehaus.mojo</groupId>
60                 <artifactId>exec-maven-plugin</artifactId>
61                 <executions>
62                     <execution>
63                         <id>yang-parser-system-test-java</id>
64                         <goals>
65                             <goal>java</goal>
66                         </goals>
67                         <configuration>
68                             <includeProjectDependencies>true</includeProjectDependencies>
69                             <includePluginDependencies>true</includePluginDependencies>
70                             <mainClass>org.opendaylight.yangtools.yang.validator.Main</mainClass>
71                             <arguments>
72                                 <argument>./src/main/yang</argument>
73                             </arguments>
74                         </configuration>
75                     </execution>
76                     <execution>
77                         <id>yang-parser-system-test-exec</id>
78                         <goals>
79                             <goal>exec</goal>
80                         </goals>
81                         <configuration>
82                             <classpathScope>test</classpathScope>
83                             <executable>java</executable>
84                             <arguments>
85                                 <argument>-classpath</argument>
86                                 <classpath/>
87                                 <argument>org.opendaylight.yangtools.yang.validator.Main</argument>
88                                 <argument>./src/main/yang</argument>
89                             </arguments>
90                         </configuration>
91                     </execution>
92                 </executions>
93             </plugin>
94             <plugin>
95                 <groupId>org.apache.maven.plugins</groupId>
96                 <artifactId>maven-assembly-plugin</artifactId>
97                 <executions>
98                     <execution>
99                         <goals>
100                             <goal>single</goal>
101                         </goals>
102                         <phase>package</phase>
103                         <configuration>
104                             <descriptorRefs>
105                                 <descriptorRef>jar-with-dependencies</descriptorRef>
106                             </descriptorRefs>
107                             <archive>
108                                 <manifest>
109                                     <mainClass>org.opendaylight.yangtools.yang.validator.Main</mainClass>
110                                 </manifest>
111                             </archive>
112                         </configuration>
113                     </execution>
114                 </executions>
115             </plugin>
116         </plugins>
117     </build>
118
119 </project>