Added XML examples generation.
[yangtools.git] / code-generator / maven-sal-api-gen-plugin / 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         <artifactId>binding-generator</artifactId>
6         <groupId>org.opendaylight.yangtools</groupId>
7         <version>0.6.0-SNAPSHOT</version>
8     </parent>
9
10     <modelVersion>4.0.0</modelVersion>
11     <artifactId>maven-sal-api-gen-plugin</artifactId>
12
13     <dependencies>
14         <dependency>
15             <groupId>org.opendaylight.yangtools</groupId>
16             <artifactId>yang-maven-plugin-spi</artifactId>
17         </dependency>
18         <dependency>
19             <groupId>org.opendaylight.yangtools</groupId>
20             <artifactId>binding-model-api</artifactId>
21         </dependency>
22         <dependency>
23             <groupId>org.opendaylight.yangtools</groupId>
24             <artifactId>binding-generator-api</artifactId>
25         </dependency>
26         <dependency>
27             <groupId>org.opendaylight.yangtools</groupId>
28             <artifactId>binding-generator-impl</artifactId>
29         </dependency>
30         <dependency>
31             <groupId>org.opendaylight.yangtools</groupId>
32             <artifactId>binding-java-api-generator</artifactId>
33         </dependency>
34
35         <dependency>
36             <groupId>org.opendaylight.yangtools</groupId>
37             <artifactId>yang-data-api</artifactId>
38         </dependency>
39
40
41         <dependency>
42             <groupId>junit</groupId>
43             <artifactId>junit</artifactId>
44             <scope>test</scope>
45         </dependency>
46     </dependencies>
47
48     <build>
49         <plugins>
50             <plugin>
51                 <artifactId>maven-jar-plugin</artifactId>
52                 <configuration>
53                     <archive>
54                         <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
55                     </archive>
56                 </configuration>
57             </plugin>
58             <plugin>
59                 <groupId>org.apache.felix</groupId>
60                 <artifactId>maven-bundle-plugin</artifactId>
61                 <extensions>true</extensions>
62                 <configuration>
63                     <instructions>
64                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
65                     </instructions>
66                 </configuration>
67             </plugin>
68             <plugin>
69                 <groupId>org.eclipse.xtend</groupId>
70                 <artifactId>xtend-maven-plugin</artifactId>
71             </plugin>
72             <plugin>
73                 <artifactId>maven-clean-plugin</artifactId>
74             </plugin>
75         </plugins>
76     </build>
77
78 </project>