[LIB-9] Fix name of chesshog-dbetude module
[chesshog.git] / chesshog-qrcode / 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-qrcode</artifactId>
31     <version>0.1-SNAPSHOT</version>
32     <packaging>jar</packaging>
33
34     <name>Hedgecode ChessHog QR Code</name>
35     <description>
36         Hedgecode ChessHog QR Code Module.
37     </description>
38
39     <properties>
40         <zxingVersion>3.3.3</zxingVersion>
41     </properties>
42
43     <dependencies>
44         <dependency>
45             <groupId>org.hedgecode.chess</groupId>
46             <artifactId>chesshog-core</artifactId>
47             <version>${chessHogVersion}</version>
48         </dependency>
49         <dependency>
50             <groupId>org.hedgecode.chess</groupId>
51             <artifactId>chesshog-format</artifactId>
52             <version>${chessHogVersion}</version>
53         </dependency>
54         <dependency>
55             <groupId>org.hedgecode.chess</groupId>
56             <artifactId>chesshog-graphics</artifactId>
57             <version>${chessHogVersion}</version>
58         </dependency>
59         <dependency>
60             <groupId>com.google.zxing</groupId>
61             <artifactId>core</artifactId>
62             <version>${zxingVersion}</version>
63         </dependency>
64         <dependency>
65             <groupId>com.google.zxing</groupId>
66             <artifactId>javase</artifactId>
67             <version>${zxingVersion}</version>
68         </dependency>
69     </dependencies>
70
71 </project>