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.tooling</groupId>
21 <artifactId>yosql-tooling</artifactId>
22 <version>0.0.0-SNAPSHOT</version>
25 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
27 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
28 <!-- https://maven.apache.org/pom.html#Maven_Coordinates -->
29 <artifactId>yosql-tooling-cli</artifactId>
31 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
33 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
34 <!-- https://maven.apache.org/pom.html#More_Project_Information -->
35 <name>YoSQL :: Tooling :: CLI</name>
37 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
39 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
40 <!-- https://maven.apache.org/pom.html#Dependencies -->
43 <groupId>wtf.metio.yosql.tooling</groupId>
44 <artifactId>yosql-tooling-dagger</artifactId>
45 <version>${project.version}</version>
48 <groupId>ch.qos.cal10n</groupId>
49 <artifactId>cal10n-api</artifactId>
52 <groupId>org.slf4j</groupId>
53 <artifactId>slf4j-ext</artifactId>
56 <groupId>org.slf4j</groupId>
57 <artifactId>slf4j-api</artifactId>
60 <groupId>info.picocli</groupId>
61 <artifactId>picocli</artifactId>
68 <groupId>org.apache.maven.plugins</groupId>
69 <artifactId>maven-compiler-plugin</artifactId>
71 <annotationProcessorPaths>
73 <groupId>info.picocli</groupId>
74 <artifactId>picocli-codegen</artifactId>
75 <version>4.6.3</version>
77 </annotationProcessorPaths>
79 <arg>-Aproject=${project.groupId}/${project.artifactId}</arg>
86 <groupId>org.codehaus.mojo</groupId>
87 <artifactId>templating-maven-plugin</artifactId>
92 <goal>filter-sources</goal>
98 <groupId>wtf.metio.yosql.models</groupId>
99 <artifactId>yosql-models-generator</artifactId>
100 <version>${project.version}</version>
104 <goal>generate</goal>
106 <phase>generate-sources</phase>
114 <groupId>org.codehaus.mojo</groupId>
115 <artifactId>build-helper-maven-plugin</artifactId>
116 <version>3.3.0</version>
119 <id>add-yosql-source</id>
120 <phase>generate-sources</phase>
122 <goal>add-source</goal>
126 <source>${project.build.directory}/generated-sources/yosql</source>