Merge "Test for some parts of RefineUtils class"
[yangtools.git] / yang / yang-model-util / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3
4     <parent>
5         <groupId>org.opendaylight.yangtools</groupId>
6         <artifactId>yang</artifactId>
7         <version>0.5.8-SNAPSHOT</version>
8     </parent>
9
10     <modelVersion>4.0.0</modelVersion>
11     <artifactId>yang-model-util</artifactId>
12     <name>${project.artifactId}</name>
13     <description>${project.artifactId}</description>
14
15
16     <build>
17         <plugins>
18             <plugin>
19                 <groupId>org.eclipse.xtend</groupId>
20                 <artifactId>xtend-maven-plugin</artifactId>
21                 <version>2.4.2</version>
22                 <executions>
23                     <execution>
24                         <goals>
25                             <goal>compile</goal>
26                         </goals>
27                         <configuration>
28                             <outputDirectory>${basedir}/src/main/xtend-gen</outputDirectory>
29                         </configuration>
30                     </execution>
31                 </executions>
32             </plugin>
33             <plugin>
34                 <artifactId>maven-clean-plugin</artifactId>
35                 <version>2.4.1</version>
36                 <configuration>
37                     <filesets>
38                         <fileset>
39                             <directory>${basedir}/src/main/xtend-gen</directory>
40                             <includes>
41                                 <include>**</include>
42                             </includes>
43                         </fileset>
44                     </filesets>
45                 </configuration>
46             </plugin>
47         </plugins>
48     </build>
49
50     <dependencies>
51         <dependency>
52             <groupId>${project.groupId}</groupId>
53             <artifactId>yang-model-api</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>org.eclipse.xtend</groupId>
57             <artifactId>org.eclipse.xtend.lib</artifactId>
58             <version>2.4.2</version>
59         </dependency>
60         <dependency>
61                 <groupId>junit</groupId>
62                 <artifactId>junit</artifactId>
63         </dependency>
64     </dependencies>
65 </project>