jslicer-2.0.2.pom

Official Java client for SlicingDice, Data Warehouse and Analytics Database as a Service.

Checksums

MD5 662cce751ceb034bfef6d0cecfaedc0e
SHA1 0b211dfe7f40ec489b54caafaabba1583473b6dc
SHA256 75443ddd3ad39c8ab8f1ef5e3462dd65bd9f2fd4a95f4c4e6708b3563116db54
SHA512 59e723ffb865a9616978d3696ad684c0e670047b2c1998cb4161910345f8b1dee160b0a9581dadcf32cef355ebd28e3f151a838f59976f503f9d069cd4a0165e

POM

<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>

    <groupId>com.slicingdice</groupId>
    <artifactId>jslicer</artifactId>
    <version>2.0.2</version>

    <name>jslicer</name>
    <url>http://www.slicingdice.com</url>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.asynchttpclient</groupId>
            <artifactId>async-http-client</artifactId>
            <version>2.4.2</version>
        </dependency>
        <dependency>
            <groupId>org.json</groupId>
            <artifactId>json</artifactId>
            <version>20180130</version>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.12</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
    <organization>
        <name>SlicingDice LLC</name>
        <url>http://www.slicingdice.com/</url>
    </organization>
    <distributionManagement>
        <snapshotRepository>
            <id>ossrh</id>
            <url>https://oss.sonatype.org/content/repositories/snapshots</url>
        </snapshotRepository>
        <repository>
            <id>ossrh</id>
            <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
        </repository>
    </distributionManagement>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.6.1</version>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.sonatype.plugins</groupId>
                <artifactId>nexus-staging-maven-plugin</artifactId>
                <version>1.6.8</version>
                <extensions>true</extensions>
                <configuration>
                    <serverId>ossrh</serverId>
                    <nexusUrl>https://oss.sonatype.org/</nexusUrl>
                    <autoReleaseAfterClose>true</autoReleaseAfterClose>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-source-plugin</artifactId>
                <version>3.0.1</version>
                <executions>
                    <execution>
                        <id>attach-sources</id>
                        <goals>
                            <goal>jar-no-fork</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
                <version>2.10.4</version>
                <executions>
                    <execution>
                        <id>attach-javadocs</id>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-gpg-plugin</artifactId>
                <version>1.6</version>
                <executions>
                    <execution>
                        <id>sign-artifacts</id>
                        <phase>verify</phase>
                        <goals>
                            <goal>sign</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
    <profiles>
        <!--
        This profile will sign the JAR file, sources file, and javadocs file using the GPG key on the local machine.
        See: https://docs.sonatype.org/display/Repository/How+To+Generate+PGP+Signatures+With+Maven
        -->
        <profile>
            <id>release-sign-artifacts</id>
            <activation>
                <property>
                    <name>release</name>
                    <value>true</value>
                </property>
            </activation>
        </profile>
    </profiles>
    <description>Official Java client for SlicingDice, Data Warehouse and Analytics Database as a Service.</description>
    <developers>
        <developer>
            <name>SlicingDice</name>
            <email>help@slicingdice.com</email>
            <organization>SlicingDice LLC</organization>
            <organizationUrl>www.slicingdice.com</organizationUrl>
        </developer>
    </developers>
    <scm>
        <connection>https://github.com/SlicingDice/slicingdice-java</connection>
        <developerConnection>https://github.com/SlicingDice/slicingdice-java</developerConnection>
        <url>https://github.com/SlicingDice/slicingdice-java</url>
    </scm>
    <licenses>
        <license>
            <name>The MIT License (MIT)</name>
            <url>https://github.com/SlicingDice/slicingdice-java/blob/develop/LICENSE.txt</url>
        </license>
    </licenses>
</project>