code cleanup
[yosql.git] / yosql-codegen / pom.xml
blobbd8ff18dc7a2fafd2a7f828359efd201d8e9bc0d
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ This file is part of yosql. It is subject to the license terms in the LICENSE file found in the top-level
4   ~ directory of this distribution and at https://creativecommons.org/publicdomain/zero/1.0/. No part of yosql,
5   ~ including this file, may be copied, modified, propagated, or distributed except according to the terms contained
6   ~ in the LICENSE file.
7   -->
8 <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
9          xmlns="http://maven.apache.org/POM/4.0.0"
10          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11     <modelVersion>4.0.0</modelVersion>
13     <!-- ordering follows https://maven.apache.org/developers/conventions/code.html#POM_Code_Convention -->
15     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
16     <!--                                 PARENT                                  -->
17     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
18     <!-- https://maven.apache.org/pom.html#Inheritance -->
19     <parent>
20         <groupId>wtf.metio.yosql</groupId>
21         <artifactId>yosql</artifactId>
22         <version>0.0.0-SNAPSHOT</version>
23     </parent>
25     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
26     <!--                               COORDINATES                               -->
27     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
28     <!-- https://maven.apache.org/pom.html#Maven_Coordinates -->
29     <groupId>wtf.metio.yosql.codegen</groupId>
30     <artifactId>yosql-codegen</artifactId>
32     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
33     <!--                               INFORMATIONS                              -->
34     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
35     <!-- https://maven.apache.org/pom.html#More_Project_Information -->
36     <name>YoSQL :: Codegen</name>
38     <dependencies>
39         <dependency>
40             <groupId>wtf.metio.yosql.internals</groupId>
41             <artifactId>yosql-internals-jdk-utils</artifactId>
42             <version>${project.version}</version>
43         </dependency>
44         <dependency>
45             <groupId>wtf.metio.yosql.internals</groupId>
46             <artifactId>yosql-internals-javapoet-utils</artifactId>
47             <version>${project.version}</version>
48         </dependency>
49         <dependency>
50             <groupId>wtf.metio.yosql.models</groupId>
51             <artifactId>yosql-models-configuration</artifactId>
52             <version>${project.version}</version>
53         </dependency>
54         <dependency>
55             <groupId>wtf.metio.yosql.models</groupId>
56             <artifactId>yosql-models-immutables</artifactId>
57             <version>${project.version}</version>
58         </dependency>
60         <dependency>
61             <groupId>com.squareup</groupId>
62             <artifactId>javapoet</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>de.xn--ho-hia.javapoet</groupId>
66             <artifactId>javapoet-type-guesser</artifactId>
67             <version>2017.03.19-185842</version>
68             <exclusions>
69                 <exclusion>
70                     <groupId>org.junit.platform</groupId>
71                     <artifactId>junit-platform-runner</artifactId>
72                 </exclusion>
73             </exclusions>
74         </dependency>
75         <dependency>
76             <groupId>ch.qos.cal10n</groupId>
77             <artifactId>cal10n-api</artifactId>
78         </dependency>
79         <dependency>
80             <groupId>org.slf4j</groupId>
81             <artifactId>slf4j-api</artifactId>
82         </dependency>
83         <dependency>
84             <groupId>org.slf4j</groupId>
85             <artifactId>slf4j-ext</artifactId>
86         </dependency>
87         <dependency>
88             <groupId>com.fasterxml.jackson.core</groupId>
89             <artifactId>jackson-databind</artifactId>
90         </dependency>
91         <dependency>
92             <groupId>com.fasterxml.jackson.core</groupId>
93             <artifactId>jackson-core</artifactId>
94         </dependency>
95         <dependency>
96             <groupId>com.fasterxml.jackson.datatype</groupId>
97             <artifactId>jackson-datatype-jdk8</artifactId>
98         </dependency>
100         <dependency>
101             <groupId>wtf.metio.yosql.internals</groupId>
102             <artifactId>yosql-internals-junit5-utils</artifactId>
103             <version>${project.version}</version>
104             <scope>test</scope>
105         </dependency>
106         <dependency>
107             <groupId>wtf.metio.yosql.internals</groupId>
108             <artifactId>yosql-internals-testing-configs</artifactId>
109             <version>${project.version}</version>
110             <scope>test</scope>
111         </dependency>
112     </dependencies>
113 </project>