Download heroku-jdbc-0.1.0.jar file

Introduction

You can download heroku-jdbc-0.1.0.jar in this page.

License

MIT

Type List

heroku-jdbc-0.1.0.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.heroku.sdk/heroku-jdbc/pom.properties
META-INF/maven/com.heroku.sdk/heroku-jdbc/pom.xml
com.heroku.sdk.jdbc.DatabaseUrl.class

Pom

heroku-jdbc-0.1.0.pom file content.

<?xml version="1.0" encoding="UTF-8"?><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.heroku.sdk</groupId>
  <artifactId>heroku-jdbc</artifactId>
  <packaging>jar</packaging>
  <version>0.1.0</version>
  <name>heroku-jdbc</name>
  <description>Helper library for parsing Database URL into JDBC connection</description>

  <url>http://github.com/jkutner/heroku-jdbc</url>

  <scm>
    <connection>scm:git:git://github.com/jkutner/heroku-jdbc.git</connection>
    <developerConnection>scm:git:ssh://git@github.com/jkutner/heroku-jdbc.git</developerConnection>
    <url>http://github.com/jkutner/heroku-jdbc</url>
    <tag>heroku-jdbc-0.1.0</tag>
  </scm>

  <distributionManagement>
    <repository>
      <id>bintray</id>
      <url>https://api.bintray.com/maven/heroku/maven/jdbc</url>
    </repository>
  </distributionManagement>

  <licenses>
    <license>
      <name>MIT</name>
      <url>http://www.opensource.org/licenses/mit-license.php</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>jkutner</id>
      <name>Joe Kutner</name>
      <email>joe@heroku.com</email>
      <timezone>CST</timezone>
    </developer>
  </developers>

  <build>
    <plugins>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>2.3.2</version>
        <configuration>
          <source>1.7</source>
          <target>1.7</target>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-release-plugin</artifactId>
        <version>2.5.1</version>
        <configuration>
          <useReleaseProfile>false</useReleaseProfile>
          <releaseProfiles>release</releaseProfiles>
          <autoVersionSubmodules>true</autoVersionSubmodules>
        </configuration>
      </plugin>
    </plugins>
  </build>

  <profiles>
    <profile>
      <id>release</id>
      <build>
        <plugins>
          <plugin>
            <artifactId>maven-source-plugin</artifactId>
            <executions>
              <execution>
                <id>attach-sources</id>
                <goals>
                  <goal>jar</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
          <plugin>
            <artifactId>maven-javadoc-plugin</artifactId>
            <executions>
              <execution>
                <id>attach-javadocs</id>
                <goals>
                  <goal>jar</goal>
                </goals>
                <configuration>
                  <additionalparam>-Xdoclint:none</additionalparam>
                </configuration>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    </profile>
  </profiles>
</project>

POM Entry

<dependency>
   <groupId>com.heroku.sdk</groupId>
   <artifactId>heroku-jdbc</artifactId>
   <version>0.1.0</version>
</dependency>

Download

If you think the following heroku-jdbc-0.1.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download heroku-jdbc-0.1.0.jar file




PreviousNext

Related