refactor config package
[yosql.git] / yosql-core / pom.xml
blobfc618e8582a4177e3a4d4b4f9af75d2a0ff9bb51
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 http://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     <artifactId>yosql-core</artifactId>
31     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
32     <!--                               INFORMATIONS                              -->
33     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
34     <!-- https://maven.apache.org/pom.html#More_Project_Information -->
35     <name>YoSQL :: Code Generator</name>
37     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
38     <!--                               DEPENDENCIES                              -->
39     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
40     <!-- https://maven.apache.org/pom.html#Dependencies -->
41     <dependencies>
42         <dependency>
43             <groupId>wtf.metio.yosql</groupId>
44             <artifactId>yosql-testutils</artifactId>
45             <version>${project.version}</version>
46         </dependency>
47         <dependency>
48             <groupId>com.squareup</groupId>
49             <artifactId>javapoet</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>de.xn--ho-hia.javapoet</groupId>
53             <artifactId>javapoet-type-guesser</artifactId>
54             <version>2017.03.19-185842</version>
55             <exclusions>
56                 <exclusion>
57                     <groupId>org.junit.platform</groupId>
58                     <artifactId>junit-platform-runner</artifactId>
59                 </exclusion>
60             </exclusions>
61         </dependency>
63         <dependency>
64             <groupId>javax.inject</groupId>
65             <artifactId>javax.inject</artifactId>
66         </dependency>
67         <dependency>
68             <groupId>javax.annotation</groupId>
69             <artifactId>javax.annotation-api</artifactId>
70         </dependency>
72         <dependency>
73             <groupId>ch.qos.cal10n</groupId>
74             <artifactId>cal10n-api</artifactId>
75         </dependency>
76         <dependency>
77             <groupId>org.slf4j</groupId>
78             <artifactId>slf4j-ext</artifactId>
79         </dependency>
80         <dependency>
81             <groupId>org.slf4j</groupId>
82             <artifactId>slf4j-api</artifactId>
83         </dependency>
84         <dependency>
85             <groupId>org.apache.logging.log4j</groupId>
86             <artifactId>log4j-api</artifactId>
87         </dependency>
88         <dependency>
89             <groupId>ch.qos.logback</groupId>
90             <artifactId>logback-classic</artifactId>
91         </dependency>
92         <dependency>
93             <groupId>ch.qos.logback</groupId>
94             <artifactId>logback-core</artifactId>
95         </dependency>
97         <dependency>
98             <groupId>org.immutables</groupId>
99             <artifactId>value</artifactId>
100             <version>2.8.8</version>
101             <scope>provided</scope>
102         </dependency>
104         <dependency>
105             <groupId>com.google.dagger</groupId>
106             <artifactId>dagger</artifactId>
107         </dependency>
108         <dependency>
109             <groupId>com.google.dagger</groupId>
110             <artifactId>dagger-compiler</artifactId>
111         </dependency>
112       <dependency>
113         <groupId>com.google.dagger</groupId>
114         <artifactId>dagger-producers</artifactId>
115       </dependency>
117       <dependency>
118         <artifactId>jackson-dataformat-yaml</artifactId>
119         <groupId>com.fasterxml.jackson.dataformat</groupId>
120         <version>2.12.1</version>
121       </dependency>
122       <dependency>
123         <artifactId>jackson-databind</artifactId>
124         <groupId>com.fasterxml.jackson.core</groupId>
125         <version>2.12.1</version>
126       </dependency>
127       <dependency>
128         <artifactId>jackson-core</artifactId>
129         <groupId>com.fasterxml.jackson.core</groupId>
130         <version>2.12.1</version>
131       </dependency>
133       <dependency>
134         <groupId>org.reactivestreams</groupId>
135         <artifactId>reactive-streams</artifactId>
136       </dependency>
137       <dependency>
138         <groupId>io.reactivex.rxjava2</groupId>
139         <artifactId>rxjava</artifactId>
140       </dependency>
141     </dependencies>
143 </project>