Bump versions to 11.0.0-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>12.0.3</version>
8         <relativePath/>
9     </parent>
10
11     <groupId>org.opendaylight.yangtools</groupId>
12     <artifactId>yang-model-validator</artifactId>
13     <version>11.0.0-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.0-SNAPSHOT</version>
23                 <scope>import</scope>
24                 <type>pom</type>
25             </dependency>
26         </dependencies>
27     </dependencyManagement>
28
29     <dependencies>
30         <dependency>
31             <groupId>org.opendaylight.yangtools</groupId>
32             <artifactId>yang-parser-impl</artifactId>
33         </dependency>
34         <dependency>
35             <groupId>org.slf4j</groupId>
36             <artifactId>slf4j-api</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>ch.qos.logback</groupId>
40             <artifactId>logback-classic</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>net.sourceforge.argparse4j</groupId>
44             <artifactId>argparse4j</artifactId>
45         </dependency>
46     </dependencies>
47
48     <build>
49         <plugins>
50             <plugin>
51                 <groupId>org.codehaus.mojo</groupId>
52                 <artifactId>build-helper-maven-plugin</artifactId>
53             </plugin>
54             <plugin>
55                 <groupId>org.codehaus.mojo</groupId>
56                 <artifactId>exec-maven-plugin</artifactId>
57                 <executions>
58                     <execution>
59                         <id>yang-parser-system-test-java</id>
60                         <goals>
61                             <goal>java</goal>
62                         </goals>
63                         <configuration>
64                             <includeProjectDependencies>true</includeProjectDependencies>
65                             <includePluginDependencies>true</includePluginDependencies>
66                             <mainClass>org.opendaylight.yangtools.yang.validator.Main</mainClass>
67                             <arguments>
68                                 <argument>./src/main/yang</argument>
69                             </arguments>
70                         </configuration>
71                     </execution>
72                     <execution>
73                         <id>yang-parser-system-test-exec</id>
74                         <goals>
75                             <goal>exec</goal>
76                         </goals>
77                         <configuration>
78                             <classpathScope>test</classpathScope>
79                             <executable>java</executable>
80                             <arguments>
81                                 <argument>-classpath</argument>
82                                 <classpath/>
83                                 <argument>org.opendaylight.yangtools.yang.validator.Main</argument>
84                                 <argument>./src/main/yang</argument>
85                             </arguments>
86                         </configuration>
87                     </execution>
88                 </executions>
89             </plugin>
90             <plugin>
91                 <groupId>org.apache.maven.plugins</groupId>
92                 <artifactId>maven-assembly-plugin</artifactId>
93                 <executions>
94                     <execution>
95                         <goals>
96                             <goal>single</goal>
97                         </goals>
98                         <phase>package</phase>
99                         <configuration>
100                             <descriptorRefs>
101                                 <descriptorRef>jar-with-dependencies</descriptorRef>
102                             </descriptorRefs>
103                             <archive>
104                                 <manifest>
105                                     <mainClass>org.opendaylight.yangtools.yang.validator.Main</mainClass>
106                                 </manifest>
107                             </archive>
108                         </configuration>
109                     </execution>
110                 </executions>
111             </plugin>
112         </plugins>
113     </build>
114
115 </project>