add common scenarios benchmarks
[yosql.git] / pom.xml
blobe9b5f0208f249197e295815ec00f02101302b43b
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 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
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.maven.parents</groupId>
21         <artifactId>maven-parents-java-prototype</artifactId>
22         <version>2021.2.12</version>
23     </parent>
25     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
26     <!--                               COORDINATES                               -->
27     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
28     <!-- https://maven.apache.org/pom.html#Maven_Coordinates -->
29     <groupId>wtf.metio.yosql</groupId>
30     <artifactId>yosql</artifactId>
31     <version>0.0.0-SNAPSHOT</version>
32     <packaging>pom</packaging>
34     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
35     <!--                               INFORMATIONS                              -->
36     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
37     <!-- https://maven.apache.org/pom.html#More_Project_Information -->
38     <name>YoSQL</name>
39     <description>YoSQL: write more SQL</description>
40     <url>https://yosql.projects.metio.wtf/</url>
41     <inceptionYear>2017</inceptionYear>
43     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
44     <!--                                    SCM                                  -->
45     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
46     <!-- https://maven.apache.org/pom.html#SCM -->
47     <scm>
48         <connection>scm:git:git@github.com:metio/yosql.git</connection>
49         <developerConnection>scm:git:git@github.com:metio/yosql.git</developerConnection>
50         <tag>HEAD</tag>
51         <url>https://github.com/metio/yosql</url>
52     </scm>
54     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
55     <!--                             ISSUE MANAGEMENT                            -->
56     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
57     <!-- https://maven.apache.org/pom.html#Issue_Management -->
58     <issueManagement>
59         <system>GitHub</system>
60         <url>https://github.com/metio/yosql/issues</url>
61     </issueManagement>
63     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
64     <!--                                PROPERTIES                               -->
65     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
66     <!-- https://maven.apache.org/pom.html#Properties -->
67     <properties>
68         <version.jdk>15</version.jdk>
69         <project.build.outputTimestamp>2017</project.build.outputTimestamp>
70     </properties>
72     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
73     <!--                                  MODULES                                -->
74     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
75     <!-- https://maven.apache.org/pom.html#Aggregation -->
76     <modules>
77         <module>yosql-internals</module>
78         <module>yosql-models</module>
79         <module>yosql-codegen</module>
80         <module>yosql-logging</module>
81         <module>yosql-converters</module>
82         <module>yosql-dao</module>
83         <module>yosql-tooling</module>
84         <module>yosql-testing</module>
85         <module>yosql-verification</module>
86         <module>yosql-examples</module>
87         <module>yosql-benchmarks</module>
88     </modules>
90 </project>