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.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-maven</artifactId>
31 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
33 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
34 <!-- https://maven.apache.org/pom.html#More_Project_Information -->
35 <name>YoSQL :: Tooling :: Maven</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-jdk-utils</artifactId>
46 <version>${project.version}</version>
49 <groupId>wtf.metio.yosql.models</groupId>
50 <artifactId>yosql-models-immutables</artifactId>
51 <version>${project.version}</version>
54 <groupId>wtf.metio.yosql.models</groupId>
55 <artifactId>yosql-models-maven</artifactId>
56 <version>${project.version}</version>
59 <groupId>wtf.metio.yosql.codegen</groupId>
60 <artifactId>yosql-codegen-api</artifactId>
61 <version>${project.version}</version>
64 <groupId>wtf.metio.yosql.tooling</groupId>
65 <artifactId>yosql-tooling-dagger</artifactId>
66 <version>${project.version}</version>
70 <groupId>org.apache.maven</groupId>
71 <artifactId>maven-plugin-api</artifactId>
74 <groupId>org.apache.maven.plugin-tools</groupId>
75 <artifactId>maven-plugin-annotations</artifactId>
76 <scope>provided</scope>
79 <groupId>org.apache.maven</groupId>
80 <artifactId>maven-core</artifactId>
84 <groupId>ch.qos.cal10n</groupId>
85 <artifactId>cal10n-api</artifactId>
88 <groupId>org.slf4j</groupId>
89 <artifactId>slf4j-ext</artifactId>
92 <groupId>org.slf4j</groupId>
93 <artifactId>slf4j-api</artifactId>
100 <groupId>org.apache.maven.plugins</groupId>
101 <artifactId>maven-plugin-plugin</artifactId>
102 <version>3.6.0</version>
106 <goal>descriptor</goal>
112 <groupId>org.ow2.asm</groupId>
113 <artifactId>asm</artifactId>
114 <version>9.1</version>