Set odl-version to 0.8.3-Beryllium-SR3 release
[yangide.git] / plugins / org.opendaylight.yangide.ext.model.editor / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- Copyright (c) 2014, 2015 Cisco Systems, Inc. and others. All rights 
3         reserved. This program and the accompanying materials are made available 
4         under the terms of the Eclipse Public License v1.0 which accompanies this 
5         distribution, and is available at http://www.eclipse.org/legal/epl-v10.html -->
6 <!-- ============================================================================== -->
7 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
8         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
9         <modelVersion>4.0.0</modelVersion>
10
11         <parent>
12                 <groupId>org.opendaylight.yangide</groupId>
13                 <artifactId>org.opendaylight.yangide.parent</artifactId>
14                 <version>1.1.1-SNAPSHOT</version>
15                 <relativePath>../..</relativePath>
16         </parent>
17
18         <artifactId>org.opendaylight.yangide.ext.model.editor</artifactId>
19         <packaging>eclipse-plugin</packaging>
20         <properties>
21        <odl-version>0.8.3-Beryllium-SR3</odl-version>
22         </properties>
23         <build>
24                 <sourceDirectory>src/main/java</sourceDirectory>
25                 <testSourceDirectory>src/test/java</testSourceDirectory>
26                 <plugins>
27                         <plugin>
28                                 <groupId>org.eclipse.tycho</groupId>
29                                 <artifactId>tycho-compiler-plugin</artifactId>
30                                 <version>0.24.0</version>
31                                 <configuration>
32                                         <excludes>
33                                                 <exclude>**/*Test.java</exclude>
34                                         </excludes>
35                                 </configuration>
36                         </plugin>
37                         <plugin>
38                                 <groupId>org.apache.maven.plugins</groupId>
39                                 <artifactId>maven-surefire-plugin</artifactId>
40                                 <executions>
41                                         <execution>
42                                                 <id>test</id>
43                                                 <phase>test</phase>
44                                                 <configuration>
45                                                 </configuration>
46                                                 <goals>
47                                                         <goal>test</goal>
48                                                 </goals>
49                                         </execution>
50                                 </executions>
51                         </plugin>
52                         <plugin>
53                                 <groupId>org.apache.maven.plugins</groupId>
54                                 <artifactId>maven-compiler-plugin</artifactId>
55                                 <executions>
56                                         <execution>
57                                                 <id>compiletests</id>
58                                                 <phase>test-compile</phase>
59                                                 <goals>
60                                                         <goal>testCompile</goal>
61                                                 </goals>
62                                         </execution>
63                                 </executions>
64                         </plugin>
65                 </plugins>
66         </build>
67         <dependencies>
68                 <dependency>
69                         <groupId>junit</groupId>
70                         <artifactId>junit</artifactId>
71                         <scope>test</scope>
72                 </dependency>
73                 <dependency>
74                         <groupId>org.mockito</groupId>
75                         <artifactId>mockito-all</artifactId>
76             <scope>test</scope>
77                 </dependency>
78                 <dependency>
79                         <groupId>org.antlr</groupId>
80                         <artifactId>antlr4-runtime</artifactId>
81                         <version>4.5.1</version>
82             <scope>test</scope>
83                 </dependency>
84                 <dependency>
85                         <groupId>org.opendaylight.yangtools</groupId>
86                         <artifactId>yang-model-api</artifactId>
87                         <version>${odl-version}</version>
88             <scope>test</scope>
89                 </dependency>
90                 <dependency>
91                         <groupId>org.opendaylight.yangtools</groupId>
92                         <artifactId>yang-model-util</artifactId>
93                         <version>${odl-version}</version>
94             <scope>test</scope>
95                 </dependency>
96                 <dependency>
97                         <groupId>org.opendaylight.yangtools</groupId>
98                         <artifactId>yang-parser-impl</artifactId>
99                         <version>${odl-version}</version>
100             <scope>test</scope>
101                 </dependency>
102                 <dependency>
103                         <groupId>org.opendaylight.yangtools</groupId>
104                         <artifactId>yang-parser-api</artifactId>
105                         <version>${odl-version}</version>
106             <scope>test</scope>
107                 </dependency>
108                 <dependency>
109                         <groupId>org.opendaylight.yangtools</groupId>
110                         <artifactId>concepts</artifactId>
111                         <version>${odl-version}</version>
112             <scope>test</scope>
113                 </dependency>
114                 <dependency>
115                         <groupId>org.opendaylight.yangtools</groupId>
116                         <artifactId>util</artifactId>
117                         <version>${odl-version}</version>
118             <scope>test</scope>
119                 </dependency>
120                 <dependency>
121                         <groupId>org.opendaylight.yangtools</groupId>
122                         <artifactId>object-cache-api</artifactId>
123                         <version>${odl-version}</version>
124             <scope>test</scope>
125                 </dependency>
126                 <dependency>
127                         <groupId>org.opendaylight.yangtools</groupId>
128                         <artifactId>yang-model-export</artifactId>
129                         <version>${odl-version}</version>
130             <scope>test</scope>
131                 </dependency>
132                 <dependency>
133                         <groupId>org.opendaylight.yangtools</groupId>
134                         <artifactId>yang-common</artifactId>
135                         <version>${odl-version}</version>
136             <scope>test</scope>
137                 </dependency>
138         <dependency>
139             <groupId>org.assertj</groupId>
140             <artifactId>assertj-core</artifactId>
141             <version>3.4.0</version>
142             <scope>test</scope>
143         </dependency>
144         <dependency>
145             <groupId>com.google.guava</groupId>
146             <artifactId>guava</artifactId>
147             <version>18.0</version>
148             <scope>test</scope>
149         </dependency>
150         </dependencies>
151 </project>