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.maven.parents</groupId>
21 <artifactId>maven-parents-java-prototype</artifactId>
22 <version>2023.1.20</version>
25 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
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 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
36 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
37 <!-- https://maven.apache.org/pom.html#More_Project_Information -->
39 <description>YoSQL: write more SQL</description>
40 <url>https://yosql.projects.metio.wtf/</url>
41 <inceptionYear>2017</inceptionYear>
43 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
45 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
46 <!-- https://maven.apache.org/pom.html#SCM -->
48 <connection>scm:git:git@github.com:metio/yosql.git</connection>
49 <developerConnection>scm:git:git@github.com:metio/yosql.git</developerConnection>
51 <url>https://github.com/metio/yosql</url>
54 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
55 <!-- ISSUE MANAGEMENT -->
56 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
57 <!-- https://maven.apache.org/pom.html#Issue_Management -->
59 <system>GitHub</system>
60 <url>https://github.com/metio/yosql/issues</url>
63 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
65 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
66 <!-- https://maven.apache.org/pom.html#Properties -->
68 <version.jdk>17</version.jdk>
69 <project.build.outputTimestamp>2017</project.build.outputTimestamp>
70 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
71 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
74 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
75 <!-- DISTRIBUTION MANAGEMENT -->
76 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
77 <!-- https://maven.apache.org/pom.html#Distribution_Management -->
78 <distributionManagement>
81 <name>official website</name>
82 <url>https://yosql.projects.metio.wtf</url>
86 <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
88 </distributionManagement>
90 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
92 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
93 <!-- https://maven.apache.org/pom.html#Aggregation -->
95 <module>yosql-internals</module>
96 <module>yosql-models</module>
97 <module>yosql-codegen</module>
98 <module>yosql-tooling</module>
99 <module>yosql-examples</module>
100 <module>yosql-benchmarks</module>
101 <module>yosql-website</module>