jslicer-1.0.0.pom

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

Checksums

MD5 3eaaf4bb5e2d4a346e2f3d02aa0aed85
SHA1 d4fda8d8ff50cc182354341052a57623d874552f
SHA256 3d6d853ddb2e44d3674078d94c5b68760e766020188fba2253678a127f868f79
SHA512 b24fa62ad82abbc1d05816791d3af0afa8781e81c28e6101b728891c4c231308268953d0072664e13438968a51de9e1074893ec422820117161de0d392b3ca93

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>1.0.0</version>

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

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

    <dependencies>
        <dependency>
            <groupId>com.squareup.okhttp3</groupId>
            <artifactId>okhttp</artifactId>
            <version>3.6.0</version>
        </dependency>
        <dependency>
            <groupId>org.json</groupId>
            <artifactId>json</artifactId>
            <version>20160212</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.7</source>
                    <target>1.7</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>