Bump dawidd6/action-send-mail from 3 to 4
[yosql.git] / yosql-models / yosql-models-generator / pom.xml
blob50805eb9f8d9f48819e42796a49bb7a471317aac
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 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
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.models</groupId>
21         <artifactId>yosql-models</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-models-generator</artifactId>
31     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
32     <!--                               INFORMATIONS                              -->
33     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
34     <!-- https://maven.apache.org/pom.html#More_Project_Information -->
35     <name>YoSQL :: Models :: Generator</name>
36     <packaging>maven-plugin</packaging>
38     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
39     <!--                               DEPENDENCIES                              -->
40     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
41     <!-- https://maven.apache.org/pom.html#Dependencies -->
42     <dependencies>
43         <dependency>
44             <groupId>wtf.metio.yosql.internals</groupId>
45             <artifactId>yosql-internals-javapoet-utils</artifactId>
46             <version>${project.version}</version>
47         </dependency>
48         <dependency>
49             <groupId>wtf.metio.yosql.models</groupId>
50             <artifactId>yosql-models-meta</artifactId>
51             <version>${project.version}</version>
52         </dependency>
53         <dependency>
54             <groupId>wtf.metio.yosql.models</groupId>
55             <artifactId>yosql-models-configuration</artifactId>
56             <version>${project.version}</version>
57         </dependency>
58         <dependency>
59             <groupId>com.squareup</groupId>
60             <artifactId>javapoet</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>wtf.metio.javapoet</groupId>
64             <artifactId>javapoet-type-guesser</artifactId>
65         </dependency>
67         <dependency>
68             <groupId>ch.qos.cal10n</groupId>
69             <artifactId>cal10n-api</artifactId>
70         </dependency>
71         <dependency>
72             <groupId>org.slf4j</groupId>
73             <artifactId>slf4j-ext</artifactId>
74         </dependency>
75         <dependency>
76             <groupId>org.slf4j</groupId>
77             <artifactId>slf4j-api</artifactId>
78         </dependency>
80         <dependency>
81             <groupId>org.immutables</groupId>
82             <artifactId>value-annotations</artifactId>
83         </dependency>
84         <dependency>
85             <groupId>info.picocli</groupId>
86             <artifactId>picocli</artifactId>
87         </dependency>
89         <dependency>
90             <groupId>org.apache.maven</groupId>
91             <artifactId>maven-plugin-api</artifactId>
92             <scope>provided</scope>
93             <exclusions>
94                 <exclusion>
95                     <groupId>org.eclipse.sisu</groupId>
96                     <artifactId>org.eclipse.sisu.plexus</artifactId>
97                 </exclusion>
98                 <exclusion>
99                     <groupId>org.codehaus.plexus</groupId>
100                     <artifactId>plexus-utils</artifactId>
101                 </exclusion>
102             </exclusions>
103         </dependency>
104         <dependency>
105             <groupId>org.eclipse.sisu</groupId>
106             <artifactId>org.eclipse.sisu.plexus</artifactId>
107             <exclusions>
108                 <exclusion>
109                     <groupId>org.codehaus.plexus</groupId>
110                     <artifactId>plexus-utils</artifactId>
111                 </exclusion>
112                 <exclusion>
113                     <groupId>org.codehaus.plexus</groupId>
114                     <artifactId>plexus-classworlds</artifactId>
115                 </exclusion>
116             </exclusions>
117         </dependency>
118         <dependency>
119             <groupId>org.apache.maven.plugin-tools</groupId>
120             <artifactId>maven-plugin-annotations</artifactId>
121             <scope>provided</scope>
122         </dependency>
123         <dependency>
124             <groupId>org.apache.maven</groupId>
125             <artifactId>maven-core</artifactId>
126             <scope>provided</scope>
127             <exclusions>
128                 <exclusion>
129                     <groupId>com.google.inject</groupId>
130                     <artifactId>guice</artifactId>
131                 </exclusion>
132                 <exclusion>
133                     <groupId>org.codehaus.plexus</groupId>
134                     <artifactId>plexus-sec-dispatcher</artifactId>
135                 </exclusion>
136                 <exclusion>
137                     <groupId>org.codehaus.plexus</groupId>
138                     <artifactId>plexus-utils</artifactId>
139                 </exclusion>
140             </exclusions>
141         </dependency>
142         <dependency>
143             <groupId>org.codehaus.plexus</groupId>
144             <artifactId>plexus-sec-dispatcher</artifactId>
145             <exclusions>
146                 <exclusion>
147                     <groupId>org.eclipse.sisu</groupId>
148                     <artifactId>org.eclipse.sisu.inject</artifactId>
149                 </exclusion>
150             </exclusions>
151         </dependency>
152         <dependency>
153             <groupId>org.eclipse.sisu</groupId>
154             <artifactId>org.eclipse.sisu.inject</artifactId>
155         </dependency>
157         <dependency>
158             <groupId>com.github.spullara.mustache.java</groupId>
159             <artifactId>compiler</artifactId>
160         </dependency>
162         <dependency>
163             <groupId>org.jspecify</groupId>
164             <artifactId>jspecify</artifactId>
165         </dependency>
166     </dependencies>
168     <build>
169         <plugins>
170             <plugin>
171                 <groupId>org.apache.maven.plugins</groupId>
172                 <artifactId>maven-plugin-plugin</artifactId>
173                 <version>3.6.4</version>
174                 <executions>
175                     <execution>
176                         <goals>
177                             <goal>descriptor</goal>
178                         </goals>
179                     </execution>
180                 </executions>
181                 <dependencies>
182                     <dependency>
183                         <groupId>org.ow2.asm</groupId>
184                         <artifactId>asm</artifactId>
185                         <version>9.3</version>
186                     </dependency>
187                 </dependencies>
188             </plugin>
189         </plugins>
190     </build>
192 </project>