yosql
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>wtf.metio.yosql</groupId> <artifactId>yosql</artifactId> <version>2023.5.3</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ This file is part of yosql. It is subject to the license terms in the LICENSE file found in the top-level ~ directory of this distribution and at https://creativecommons.org/publicdomain/zero/1.0/. No part of yosql, ~ including this file, may be copied, modified, propagated, or distributed except according to the terms contained ~ in the LICENSE file. --> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <!-- ordering follows https://maven.apache.org/developers/conventions/code.html#POM_Code_Convention --> <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> <!-- PARENT --> <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> <!-- https://maven.apache.org/pom.html#Inheritance --> <parent> <groupId>wtf.metio.maven.parents</groupId> <artifactId>maven-parents-java-prototype</artifactId> <version>2023.4.28</version> </parent> <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> <!-- COORDINATES --> <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> <!-- https://maven.apache.org/pom.html#Maven_Coordinates --> <groupId>wtf.metio.yosql</groupId> <artifactId>yosql</artifactId> <version>2023.5.3</version> <packaging>pom</packaging> <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> <!-- INFORMATIONS --> <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> <!-- https://maven.apache.org/pom.html#More_Project_Information --> <name>YoSQL</name> <description>YoSQL: write more SQL</description> <url>https://yosql.projects.metio.wtf/</url> <inceptionYear>2017</inceptionYear> <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> <!-- SCM --> <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> <!-- https://maven.apache.org/pom.html#SCM --> <scm> <connection>scm:git:git@github.com:metio/yosql.git</connection> <developerConnection>scm:git:git@github.com:metio/yosql.git</developerConnection> <tag>HEAD</tag> <url>https://github.com/metio/yosql</url> </scm> <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> <!-- ISSUE MANAGEMENT --> <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> <!-- https://maven.apache.org/pom.html#Issue_Management --> <issueManagement> <system>GitHub</system> <url>https://github.com/metio/yosql/issues</url> </issueManagement> <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> <!-- PROPERTIES --> <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> <!-- https://maven.apache.org/pom.html#Properties --> <properties> <version.jdk>17</version.jdk> <project.build.outputTimestamp>1683084766</project.build.outputTimestamp> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> </properties> <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> <!-- DISTRIBUTION MANAGEMENT --> <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> <!-- https://maven.apache.org/pom.html#Distribution_Management --> <distributionManagement> <site> <id>metio</id> <name>official website</name> <url>https://yosql.projects.metio.wtf</url> </site> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> <!-- MODULES --> <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> <!-- https://maven.apache.org/pom.html#Aggregation --> <modules> <module>yosql-internals</module> <module>yosql-models</module> <module>yosql-codegen</module> <module>yosql-tooling</module> <module>yosql-examples</module> <module>yosql-benchmarks</module> <module>yosql-website</module> </modules> </project>