07bcf43cf877d55c2d34728c0b2d148454b30c30
[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     <dependencies>
16         <dependency>
17             <groupId>${project.groupId}</groupId>
18             <artifactId>yang-model-api</artifactId>
19         </dependency>
20         <dependency>
21             <groupId>org.eclipse.xtend</groupId>
22             <artifactId>org.eclipse.xtend.lib</artifactId>
23             <version>2.4.2</version>
24         </dependency>
25         <dependency>
26             <groupId>junit</groupId>
27             <artifactId>junit</artifactId>
28         </dependency>
29     </dependencies>
30
31     <build>
32         <plugins>
33             <plugin>
34                 <groupId>org.apache.maven.plugins</groupId>
35                 <artifactId>maven-jar-plugin</artifactId>
36                 <version>${maven.jar.version}</version>
37                 <configuration>
38                     <archive>
39                         <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
40                     </archive>
41                 </configuration>
42             </plugin>
43             <plugin>
44                 <groupId>org.apache.felix</groupId>
45                 <artifactId>maven-bundle-plugin</artifactId>
46                 <extensions>true</extensions>
47                 <configuration>
48                     <instructions>
49                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
50                     </instructions>
51                 </configuration>
52             </plugin>
53             <plugin>
54                 <groupId>org.eclipse.xtend</groupId>
55                 <artifactId>xtend-maven-plugin</artifactId>
56                 <version>2.4.2</version>
57                 <executions>
58                     <execution>
59                         <goals>
60                             <goal>compile</goal>
61                         </goals>
62                         <configuration>
63                             <outputDirectory>${basedir}/src/main/xtend-gen</outputDirectory>
64                         </configuration>
65                     </execution>
66                 </executions>
67             </plugin>
68             <plugin>
69                 <artifactId>maven-clean-plugin</artifactId>
70                 <version>2.4.1</version>
71                 <configuration>
72                     <filesets>
73                         <fileset>
74                             <directory>${basedir}/src/main/xtend-gen</directory>
75                             <includes>
76                                 <include>**</include>
77                             </includes>
78                         </fileset>
79                     </filesets>
80                 </configuration>
81             </plugin>
82         </plugins>
83     </build>
84
85 </project>