[LIB-9] Modify ChessQRCodeWriterTest
[chesshog.git] / chesshog-dbetude / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2
3 <!--
4   ~ Copyright (c) 2018-2019. Developed by Hedgecode.
5   ~
6   ~ Licensed under the Apache License, Version 2.0 (the "License");
7   ~ you may not use this file except in compliance with the License.
8   ~ You may obtain a copy of the License at
9   ~
10   ~   http://www.apache.org/licenses/LICENSE-2.0
11   ~
12   ~ Unless required by applicable law or agreed to in writing, software
13   ~ distributed under the License is distributed on an "AS IS" BASIS,
14   ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15   ~ See the License for the specific language governing permissions and
16   ~ limitations under the License.
17   -->
18
19 <project xmlns="http://maven.apache.org/POM/4.0.0"
20          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
22     <modelVersion>4.0.0</modelVersion>
23
24     <parent>
25         <groupId>org.hedgecode.chess</groupId>
26         <artifactId>chesshog</artifactId>
27         <version>0.1-SNAPSHOT</version>
28     </parent>
29
30     <artifactId>chesshog-dbetude</artifactId>
31     <version>0.1-SNAPSHOT</version>
32     <packaging>jar</packaging>
33
34     <name>Hedgecode ChessHog DB Etude</name>
35     <description>
36         Hedgecode ChessHog DB Etude Module.
37     </description>
38
39     <properties>
40         <hibernateCoreVersion>5.3.7.Final</hibernateCoreVersion>
41         <hibernateJpaApiVersion>1.0.1.Final</hibernateJpaApiVersion>
42         <mysqlVersion>8.0.13</mysqlVersion>
43         <groovyVersion>2.4.15</groovyVersion>
44     </properties>
45
46     <dependencies>
47         <dependency>
48             <groupId>org.hedgecode.chess</groupId>
49             <artifactId>chesshog-core</artifactId>
50             <version>${chessHogVersion}</version>
51         </dependency>
52         <dependency>
53             <groupId>org.hibernate</groupId>
54             <artifactId>hibernate-core</artifactId>
55             <version>${hibernateCoreVersion}</version>
56         </dependency>
57         <dependency>
58             <groupId>org.hibernate</groupId>
59             <artifactId>hibernate-entitymanager</artifactId>
60             <version>${hibernateCoreVersion}</version>
61         </dependency>
62         <dependency>
63             <groupId>org.hibernate.javax.persistence</groupId>
64             <artifactId>hibernate-jpa-2.0-api</artifactId>
65             <version>${hibernateJpaApiVersion}</version>
66         </dependency>
67         <dependency>
68             <groupId>mysql</groupId>
69             <artifactId>mysql-connector-java</artifactId>
70             <version>${mysqlVersion}</version>
71         </dependency>
72         <dependency>
73             <groupId>org.codehaus.groovy</groupId>
74             <artifactId>groovy-all</artifactId>
75             <version>${groovyVersion}</version>
76             <scope>test</scope>
77         </dependency>
78     </dependencies>
79
80 </project>