Revert "Revert "Bump all artifacts to 0.6.0-SNAPSHOT""
[mdsal.git] / code-generator / binding-generator-impl / 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-generator-impl</artifactId>
11
12     <dependencies>
13         <dependency>
14             <groupId>org.opendaylight.yangtools</groupId>
15             <artifactId>binding-generator-util</artifactId>
16         </dependency>
17         <dependency>
18             <groupId>org.opendaylight.yangtools</groupId>
19             <artifactId>yang-parser-impl</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-spi</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>org.opendaylight.yangtools</groupId>
31             <artifactId>binding-type-provider</artifactId>
32             <version>${project.version}</version>
33         </dependency>
34         <dependency>
35             <groupId>junit</groupId>
36             <artifactId>junit</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>org.apache.commons</groupId>
40             <artifactId>commons-lang3</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>com.google.guava</groupId>
44             <artifactId>guava</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>org.eclipse.xtend</groupId>
48             <artifactId>org.eclipse.xtend.lib</artifactId>
49         </dependency>
50     </dependencies>
51
52     <build>
53         <plugins>
54             <plugin>
55                 <artifactId>maven-jar-plugin</artifactId>
56             </plugin>
57             <plugin>
58                 <groupId>org.apache.felix</groupId>
59                 <artifactId>maven-bundle-plugin</artifactId>
60                 <extensions>true</extensions>
61                 <configuration>
62                     <instructions>
63                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
64                     </instructions>
65                 </configuration>
66             </plugin>
67             <plugin>
68                 <groupId>org.eclipse.xtend</groupId>
69                 <artifactId>xtend-maven-plugin</artifactId>
70                 <executions>
71                     <execution>
72                         <goals>
73                             <goal>compile</goal>
74                         </goals>
75                         <configuration>
76                             <outputDirectory>${basedir}/src/main/xtend-gen</outputDirectory>
77                         </configuration>
78                     </execution>
79                 </executions>
80             </plugin>
81             <plugin>
82                 <artifactId>maven-clean-plugin</artifactId>
83                 <configuration>
84                     <filesets>
85                         <fileset>
86                             <directory>${basedir}/src/main/xtend-gen</directory>
87                             <includes>
88                                 <include>**</include>
89                             </includes>
90                         </fileset>
91                     </filesets>
92                 </configuration>
93             </plugin>
94         </plugins>
95     </build>
96
97 </project>