8def7123a9791de91a03650bb964e5df82a3bfe5
[mdsal.git] / code-generator / binding-java-api-generator / 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         <groupId>org.opendaylight.yangtools</groupId>
5         <artifactId>binding-generator</artifactId>
6         <version>0.6.0-SNAPSHOT</version>
7     </parent>
8
9     <modelVersion>4.0.0</modelVersion>
10     <artifactId>binding-java-api-generator</artifactId>
11
12     <build>
13         <plugins>
14             <plugin>
15                 <artifactId>maven-jar-plugin</artifactId>
16             </plugin>
17             <plugin>
18                 <groupId>org.apache.felix</groupId>
19                 <artifactId>maven-bundle-plugin</artifactId>
20                 <extensions>true</extensions>
21                 <configuration>
22                     <instructions>
23                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
24                     </instructions>
25                 </configuration>
26             </plugin>
27             <plugin>
28                 <groupId>org.eclipse.xtend</groupId>
29                 <artifactId>xtend-maven-plugin</artifactId>
30             </plugin>
31             <plugin>
32                 <artifactId>maven-clean-plugin</artifactId>
33             </plugin>
34         </plugins>
35     </build>
36
37     <dependencies>
38         <dependency>
39             <groupId>org.opendaylight.yangtools</groupId>
40             <artifactId>binding-model-api</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>org.opendaylight.yangtools</groupId>
44             <artifactId>binding-generator-impl</artifactId>
45             <scope>test</scope>
46         </dependency>
47         <dependency>
48             <groupId>org.opendaylight.yangtools</groupId>
49             <artifactId>binding-generator-util</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>junit</groupId>
53             <artifactId>junit</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>org.eclipse.xtend</groupId>
57             <artifactId>org.eclipse.xtend.lib</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>com.google.guava</groupId>
61             <artifactId>guava</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>org.sonatype.plexus</groupId>
65             <artifactId>plexus-build-api</artifactId>
66         </dependency>
67         <dependency>
68             <groupId>org.codehaus.plexus</groupId>
69             <artifactId>plexus-slf4j-logging</artifactId>
70         </dependency>
71     </dependencies>
72
73 </project>