yosql
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.sebhoss.yosql</groupId>
<artifactId>yosql</artifactId>
<version>0.0.1</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 http://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="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- COORDINATES -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- https://maven.apache.org/pom.html#Maven_Coordinates -->
<groupId>com.github.sebhoss.yosql</groupId>
<artifactId>yosql</artifactId>
<version>0.0.1</version>
<packaging>pom</packaging>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- INFORMATIONS -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- https://maven.apache.org/pom.html#More_Project_Information -->
<name>YoSQL</name>
<description>Java/SQL bridge</description>
<url>https://seb.xn--ho-hia.de/yosql</url>
<inceptionYear>2016</inceptionYear>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- LICENSE -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- https://maven.apache.org/pom.html#Licenses -->
<licenses>
<license>
<name>Creative Commons Zero</name>
<url>http://creativecommons.org/publicdomain/zero/1.0/legalcode.txt</url>
<distribution>repo</distribution>
<comments>http://creativecommons.org/publicdomain/zero/1.0/</comments>
</license>
</licenses>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- DEVELOPERS -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- https://maven.apache.org/pom.html#Developers -->
<developers>
<developer>
<id>sebhoss</id>
<name>Sebastian Hoß</name>
<email>mail@shoss.de</email>
<url>https://seb.xn--ho-hia.de/</url>
<organization>metio.wtf</organization>
<organizationUrl>http://metio.wtf/</organizationUrl>
<roles>
<role>Developer</role>
</roles>
<timezone>Europe/Berlin</timezone>
<properties>
<twitter>@sebhoss</twitter>
<github>@sebhoss</github>
<bitbucket>@sebhoss</bitbucket>
<gitlab>@sebastian.hoss</gitlab>
</properties>
</developer>
</developers>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- MODULES -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- https://maven.apache.org/pom.html#Aggregation -->
<modules>
<module>yosql-maven-plugin</module>
<!--
<module>yosql-example</module>
<module>yosql-dependency</module>
<module>yosql-gradle-plugin</module>
-->
</modules>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- SCM -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- https://maven.apache.org/pom.html#SCM -->
<scm>
<connection>scm:git:git://github.com/sebhoss/yosql.git</connection>
<developerConnection>scm:git:git@github.com:sebhoss/yosql.git</developerConnection>
<tag>HEAD</tag>
<url>https://github.com/sebhoss/yosql</url>
</scm>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- ISSUE MANAGEMENT -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- https://maven.apache.org/pom.html#Issue_Management -->
<issueManagement>
<system>GitHub</system>
<url>https://github.com/sebhoss/yosql/issues</url>
</issueManagement>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- CI MANAGEMENT -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- https://maven.apache.org/pom.html#Continuous_Integration_Management -->
<ciManagement>
<system>Jenkins</system>
<url>https://build.metio.wtf/job/sebhoss/job/yosql/</url>
</ciManagement>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- DISTRIBUTION MANAGEMENT -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- https://maven.apache.org/pom.html#Distribution_Management -->
<distributionManagement>
<snapshotRepository>
<!-- http://central.sonatype.org/pages/apache-maven.html -->
<id>${staging-id}</id>
<url>${staging-url}</url>
</snapshotRepository>
<repository>
<id>${release-id}</id>
<url>${release-url}</url>
</repository>
</distributionManagement>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- PROPERTIES -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- https://maven.apache.org/pom.html#Properties -->
<properties>
<version.bom>2017.02.18-211726</version.bom>
</properties>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- DEPENDENCY MANAGEMENT -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- https://maven.apache.org/pom.html#Dependency_Management -->
<dependencyManagement>
<dependencies>
<dependency>
<groupId>de.xn--ho-hia.maven.boms</groupId>
<artifactId>maven-boms-all</artifactId>
<version>${version.bom}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- BUILD -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- https://maven.apache.org/pom.html#Build -->
<build>
<!-- https://maven.apache.org/pom.html#Plugin_Management -->
<pluginManagement>
<!-- https://maven.apache.org/pom.html#Plugins -->
<plugins>
<plugin>
<!-- http://kohsuke.org/pgp-maven-plugin/ -->
<groupId>org.kohsuke</groupId>
<artifactId>pgp-maven-plugin</artifactId>
<version>1.1</version>
<configuration>
<secretkey>${pgp.secretKey}</secretkey>
<passphrase>${pgp.passphrase}</passphrase>
</configuration>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<!-- http://kohsuke.org/pgp-maven-plugin/sign-mojo.html -->
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<!-- http://maven.apache.org/scm/maven-scm-plugin/ -->
<artifactId>maven-scm-plugin</artifactId>
<version>1.9.5</version>
<configuration>
<!-- http://maven.apache.org/scm/maven-scm-plugin/tag-mojo.html#tag -->
<tag>${project.artifactId}-${project.version}</tag>
</configuration>
</plugin>
<plugin>
<!-- https://github.com/sonatype/nexus-maven-plugins/tree/master/staging/maven-plugin -->
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<configuration>
<!-- make sure that you have an appropriate entry in your settings.xml -->
<serverId>${staging-id}</serverId>
<nexusUrl>${nexus-url}</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<!-- https://maven.apache.org/plugins/maven-jar-plugin/ -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.2</version>
</plugin>
<plugin>
<!-- https://maven.apache.org/plugins/maven-source-plugin/ -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>
<!-- https://maven.apache.org/plugins/maven-source-plugin/jar-no-fork-mojo.html -->
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<!-- https://maven.apache.org/plugins/maven-javadoc-plugin/ -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.4</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<!-- https://maven.apache.org/plugins/maven-javadoc-plugin/jar-mojo.html -->
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
<!-- https://maven.apache.org/pom.html#Plugins -->
<plugins>
<plugin>
<!-- https://github.com/sonatype/nexus-maven-plugins/tree/master/staging/maven-plugin -->
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<extensions>true</extensions>
</plugin>
<plugin>
<!-- https://maven.apache.org/plugins/maven-jar-plugin/ -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
</plugin>
</plugins>
</build>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- PROFILES -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- https://maven.apache.org/pom.html#Profiles -->
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<!-- https://maven.apache.org/plugins/maven-source-plugin/ -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<!-- https://maven.apache.org/plugins/maven-javadoc-plugin/ -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
<plugin>
<!-- http://kohsuke.org/pgp-maven-plugin/ -->
<groupId>org.kohsuke</groupId>
<artifactId>pgp-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>