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 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
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.models</groupId>
21 <artifactId>yosql-models</artifactId>
22 <version>0.0.0-SNAPSHOT</version>
25 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
27 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
28 <!-- https://maven.apache.org/pom.html#Maven_Coordinates -->
29 <artifactId>yosql-models-generator</artifactId>
31 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
33 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
34 <!-- https://maven.apache.org/pom.html#More_Project_Information -->
35 <name>YoSQL :: Models :: Generator</name>
36 <packaging>maven-plugin</packaging>
38 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
40 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
41 <!-- https://maven.apache.org/pom.html#Dependencies -->
44 <groupId>wtf.metio.yosql.internals</groupId>
45 <artifactId>yosql-internals-javapoet-utils</artifactId>
46 <version>${project.version}</version>
49 <groupId>wtf.metio.yosql.models</groupId>
50 <artifactId>yosql-models-meta</artifactId>
51 <version>${project.version}</version>
54 <groupId>wtf.metio.yosql.models</groupId>
55 <artifactId>yosql-models-configuration</artifactId>
56 <version>${project.version}</version>
59 <groupId>com.squareup</groupId>
60 <artifactId>javapoet</artifactId>
63 <groupId>wtf.metio.javapoet</groupId>
64 <artifactId>javapoet-type-guesser</artifactId>
68 <groupId>ch.qos.cal10n</groupId>
69 <artifactId>cal10n-api</artifactId>
72 <groupId>org.slf4j</groupId>
73 <artifactId>slf4j-ext</artifactId>
76 <groupId>org.slf4j</groupId>
77 <artifactId>slf4j-api</artifactId>
81 <groupId>org.immutables</groupId>
82 <artifactId>value-annotations</artifactId>
85 <groupId>info.picocli</groupId>
86 <artifactId>picocli</artifactId>
90 <groupId>org.apache.maven</groupId>
91 <artifactId>maven-plugin-api</artifactId>
92 <scope>provided</scope>
95 <groupId>org.eclipse.sisu</groupId>
96 <artifactId>org.eclipse.sisu.plexus</artifactId>
99 <groupId>org.codehaus.plexus</groupId>
100 <artifactId>plexus-utils</artifactId>
105 <groupId>org.eclipse.sisu</groupId>
106 <artifactId>org.eclipse.sisu.plexus</artifactId>
109 <groupId>org.codehaus.plexus</groupId>
110 <artifactId>plexus-utils</artifactId>
113 <groupId>org.codehaus.plexus</groupId>
114 <artifactId>plexus-classworlds</artifactId>
119 <groupId>org.apache.maven.plugin-tools</groupId>
120 <artifactId>maven-plugin-annotations</artifactId>
121 <scope>provided</scope>
124 <groupId>org.apache.maven</groupId>
125 <artifactId>maven-core</artifactId>
126 <scope>provided</scope>
129 <groupId>com.google.inject</groupId>
130 <artifactId>guice</artifactId>
133 <groupId>org.codehaus.plexus</groupId>
134 <artifactId>plexus-sec-dispatcher</artifactId>
137 <groupId>org.codehaus.plexus</groupId>
138 <artifactId>plexus-utils</artifactId>
143 <groupId>org.codehaus.plexus</groupId>
144 <artifactId>plexus-sec-dispatcher</artifactId>
147 <groupId>org.eclipse.sisu</groupId>
148 <artifactId>org.eclipse.sisu.inject</artifactId>
153 <groupId>org.eclipse.sisu</groupId>
154 <artifactId>org.eclipse.sisu.inject</artifactId>
158 <groupId>com.github.spullara.mustache.java</groupId>
159 <artifactId>compiler</artifactId>
163 <groupId>org.jspecify</groupId>
164 <artifactId>jspecify</artifactId>
171 <groupId>org.apache.maven.plugins</groupId>
172 <artifactId>maven-plugin-plugin</artifactId>
173 <version>3.6.4</version>
177 <goal>descriptor</goal>
183 <groupId>org.ow2.asm</groupId>
184 <artifactId>asm</artifactId>
185 <version>9.3</version>