Bumping versions by x.y.(z+1) for next dev cycle
[mdsal.git] / binding2 / prototype / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5     <modelVersion>4.0.0</modelVersion>
6
7     <groupId>org.opendaylight.yangtools.yang.binding2</groupId>
8     <artifactId>prototype</artifactId>
9     <version>0.1.4-SNAPSHOT</version>
10
11     <dependencies>
12         <dependency>
13             <groupId>org.opendaylight.yangtools</groupId>
14             <artifactId>yang-common</artifactId>
15             <version>1.0.4-SNAPSHOT</version>
16         </dependency>
17         <dependency>
18             <groupId>org.opendaylight.mdsal</groupId>
19             <artifactId>yang-binding2</artifactId>
20             <version>0.9.4-SNAPSHOT</version>
21         </dependency>
22     </dependencies>
23
24     <build>
25         <plugins>
26             <plugin>
27                 <groupId>org.apache.maven.plugins</groupId>
28                 <artifactId>maven-compiler-plugin</artifactId>
29                 <version>3.5.1</version>
30                 <configuration>
31                     <source>1.8</source>
32                     <target>1.8</target>
33                 </configuration>
34                 <executions>
35                     <execution>
36                         <phase>compile</phase>
37                         <goals>
38                             <goal>compile</goal>
39                         </goals>
40                     </execution>
41                 </executions>
42             </plugin>
43         </plugins>
44     </build>
45 </project>