1 <?xml version="1.0" encoding="UTF-8"?>
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
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 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
17 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
18 <!-- https://maven.apache.org/pom.html#Inheritance -->
20 <groupId>wtf.metio.yosql</groupId>
21 <artifactId>yosql</artifactId>
22 <version>0.0.0-SNAPSHOT</version>
25 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
27 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
28 <!-- https://maven.apache.org/pom.html#Maven_Coordinates -->
29 <artifactId>yosql-core</artifactId>
31 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
33 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
34 <!-- https://maven.apache.org/pom.html#More_Project_Information -->
35 <name>YoSQL :: Code Generator</name>
37 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
39 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
40 <!-- https://maven.apache.org/pom.html#Dependencies -->
43 <groupId>wtf.metio.yosql</groupId>
44 <artifactId>yosql-testutils</artifactId>
45 <version>${project.version}</version>
48 <groupId>com.squareup</groupId>
49 <artifactId>javapoet</artifactId>
52 <groupId>de.xn--ho-hia.javapoet</groupId>
53 <artifactId>javapoet-type-guesser</artifactId>
54 <version>2017.03.19-185842</version>
57 <groupId>org.junit.platform</groupId>
58 <artifactId>junit-platform-runner</artifactId>
64 <groupId>javax.inject</groupId>
65 <artifactId>javax.inject</artifactId>
68 <groupId>javax.annotation</groupId>
69 <artifactId>javax.annotation-api</artifactId>
73 <groupId>ch.qos.cal10n</groupId>
74 <artifactId>cal10n-api</artifactId>
77 <groupId>org.slf4j</groupId>
78 <artifactId>slf4j-ext</artifactId>
81 <groupId>org.slf4j</groupId>
82 <artifactId>slf4j-api</artifactId>
85 <groupId>org.apache.logging.log4j</groupId>
86 <artifactId>log4j-api</artifactId>
89 <groupId>ch.qos.logback</groupId>
90 <artifactId>logback-classic</artifactId>
93 <groupId>ch.qos.logback</groupId>
94 <artifactId>logback-core</artifactId>
98 <groupId>org.immutables</groupId>
99 <artifactId>value</artifactId>
100 <version>2.8.8</version>
101 <scope>provided</scope>
105 <groupId>com.google.dagger</groupId>
106 <artifactId>dagger</artifactId>
109 <groupId>com.google.dagger</groupId>
110 <artifactId>dagger-compiler</artifactId>
113 <groupId>com.google.dagger</groupId>
114 <artifactId>dagger-producers</artifactId>
118 <artifactId>jackson-dataformat-yaml</artifactId>
119 <groupId>com.fasterxml.jackson.dataformat</groupId>
120 <version>2.12.1</version>
123 <artifactId>jackson-databind</artifactId>
124 <groupId>com.fasterxml.jackson.core</groupId>
125 <version>2.12.1</version>
128 <artifactId>jackson-core</artifactId>
129 <groupId>com.fasterxml.jackson.core</groupId>
130 <version>2.12.1</version>
134 <groupId>org.reactivestreams</groupId>
135 <artifactId>reactive-streams</artifactId>
138 <groupId>io.reactivex.rxjava2</groupId>
139 <artifactId>rxjava</artifactId>