better method names for Variables
[yosql.git] / yosql-models / yosql-models-generator / pom.xml
blobc564317adc572ac30215d93696bdd04a086ea207
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-sql</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>de.xn--ho-hia.javapoet</groupId>
64             <artifactId>javapoet-type-guesser</artifactId>
65             <version>2017.03.19-185842</version>
66             <exclusions>
67                 <exclusion>
68                     <groupId>org.junit.platform</groupId>
69                     <artifactId>junit-platform-runner</artifactId>
70                 </exclusion>
71             </exclusions>
72         </dependency>
74         <dependency>
75             <groupId>ch.qos.cal10n</groupId>
76             <artifactId>cal10n-api</artifactId>
77         </dependency>
78         <dependency>
79             <groupId>org.slf4j</groupId>
80             <artifactId>slf4j-ext</artifactId>
81         </dependency>
82         <dependency>
83             <groupId>org.slf4j</groupId>
84             <artifactId>slf4j-api</artifactId>
85         </dependency>
87         <dependency>
88             <groupId>org.immutables</groupId>
89             <artifactId>value-annotations</artifactId>
90         </dependency>
91         <dependency>
92             <groupId>info.picocli</groupId>
93             <artifactId>picocli</artifactId>
94         </dependency>
96         <dependency>
97             <groupId>org.apache.maven</groupId>
98             <artifactId>maven-plugin-api</artifactId>
99             <scope>provided</scope>
100             <exclusions>
101                 <exclusion>
102                     <groupId>org.eclipse.sisu</groupId>
103                     <artifactId>org.eclipse.sisu.plexus</artifactId>
104                 </exclusion>
105                 <exclusion>
106                     <groupId>org.codehaus.plexus</groupId>
107                     <artifactId>plexus-utils</artifactId>
108                 </exclusion>
109             </exclusions>
110         </dependency>
111         <dependency>
112             <groupId>org.eclipse.sisu</groupId>
113             <artifactId>org.eclipse.sisu.plexus</artifactId>
114             <version>0.3.5</version>
115             <exclusions>
116                 <exclusion>
117                     <groupId>org.codehaus.plexus</groupId>
118                     <artifactId>plexus-utils</artifactId>
119                 </exclusion>
120                 <exclusion>
121                     <groupId>org.codehaus.plexus</groupId>
122                     <artifactId>plexus-classworlds</artifactId>
123                 </exclusion>
124             </exclusions>
125         </dependency>
126         <dependency>
127             <groupId>org.apache.maven.plugin-tools</groupId>
128             <artifactId>maven-plugin-annotations</artifactId>
129             <scope>provided</scope>
130         </dependency>
131         <dependency>
132             <groupId>org.apache.maven</groupId>
133             <artifactId>maven-core</artifactId>
134             <scope>provided</scope>
135             <exclusions>
136                 <exclusion>
137                     <groupId>com.google.inject</groupId>
138                     <artifactId>guice</artifactId>
139                 </exclusion>
140                 <exclusion>
141                     <groupId>org.codehaus.plexus</groupId>
142                     <artifactId>plexus-sec-dispatcher</artifactId>
143                 </exclusion>
144                 <exclusion>
145                     <groupId>org.codehaus.plexus</groupId>
146                     <artifactId>plexus-utils</artifactId>
147                 </exclusion>
148             </exclusions>
149         </dependency>
150         <dependency>
151             <groupId>org.codehaus.plexus</groupId>
152             <artifactId>plexus-sec-dispatcher</artifactId>
153             <version>2.0</version>
154             <exclusions>
155                 <exclusion>
156                     <groupId>org.eclipse.sisu</groupId>
157                     <artifactId>org.eclipse.sisu.inject</artifactId>
158                 </exclusion>
159             </exclusions>
160         </dependency>
161         <dependency>
162             <groupId>org.eclipse.sisu</groupId>
163             <artifactId>org.eclipse.sisu.inject</artifactId>
164             <version>0.3.5</version>
165         </dependency>
167         <dependency>
168             <groupId>com.github.spullara.mustache.java</groupId>
169             <artifactId>compiler</artifactId>
170         </dependency>
171     </dependencies>
173     <build>
174         <plugins>
175             <plugin>
176                 <groupId>org.apache.maven.plugins</groupId>
177                 <artifactId>maven-plugin-plugin</artifactId>
178                 <version>3.6.4</version>
179                 <executions>
180                     <execution>
181                         <goals>
182                             <goal>descriptor</goal>
183                         </goals>
184                     </execution>
185                 </executions>
186                 <dependencies>
187                     <dependency>
188                         <groupId>org.ow2.asm</groupId>
189                         <artifactId>asm</artifactId>
190                         <version>9.3</version>
191                     </dependency>
192                 </dependencies>
193             </plugin>
194         </plugins>
195     </build>
197 </project>