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