java-api-3.1.8.jar
maven leiningen ivy sbt gradle grape
Add the repository to Maven
Add this to the top level of yourpom.xml
<repositories> <repository> <id>utPLSQL-utPLSQL-java-api</id> <url>https://packagecloud.io/utPLSQL/utPLSQL-java-api/maven2</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository></repositories>
<dependency> <groupId>org.utplsql</groupId> <artifactId>java-api</artifactId> <version>3.1.8</version></dependency>
Add the repository to Leiningen
Add this entry to the top-level of yourproject.clj
file
:repositories [["snapshots" "https://packagecloud.io/utPLSQL/utPLSQL-java-api/maven2"] ["releases" "https://packagecloud.io/utPLSQL/utPLSQL-java-api/maven2"]]
[org.utplsql/java-api "3.1.8"]
Add the repository to Ivy
Create anivysettings.xml
file
<ivysettings> <settings defaultResolver="chain"/> <resolvers> <chain name="chain"> <ibiblio name="central" m2compatible="true"/> <ibiblio name="utPLSQL-utPLSQL-java-api" m2compatible="true" root="https://packagecloud.io/utPLSQL/utPLSQL-java-api/maven2"/> </chain> </resolvers></ivysettings>
<dependency org="org.utplsql" name="java-api" rev="3.1.8" />
Add the repository to SBT
For SNAPSHOT support (needs SBT 0.13.8 or above), create or append the following to aproject/maven.sbt
file in your project:
addMavenResolverPlugin
Then, add this entry anywhere in yourbuild.sbt
file:
resolvers += "utPLSQL-utPLSQL-java-api" at "https://packagecloud.io/utPLSQL/utPLSQL-java-api/maven2"
libraryDependencies += "org.utplsql" % "java-api" % "3.1.8"
Add the repository to Gradle
Add this entry anywhere in yourbuild.gradle
file
repositories { maven { url "https://packagecloud.io/utPLSQL/utPLSQL-java-api/maven2" }}
compile 'org.utplsql:java-api:3.1.8'
Add the repository to Grape
Create a~/.groovy/grapeConfig.xml
file
<ivysettings> <settings defaultResolver="downloadGrapes"/> <resolvers> <chain name="downloadGrapes" returnFirst="true"> <filesystem name="cachedGrapes"> <ivy pattern="${user.home}/.groovy/grapes/[organisation]/[module]/ivy-[revision].xml"/> <artifact pattern="${user.home}/.groovy/grapes/[organisation]/[module]/[type]s/[artifact]-[revision](-[classifier]).[ext]"/> </filesystem> <ibiblio name="localm2" root="file:${user.home}/.m2/repository/" checkmodified="true" changingPattern=".*" changingMatcher="regexp" m2compatible="true"/> <!-- todo add 'endorsed groovy extensions' resolver here --> <ibiblio name="utPLSQL-utPLSQL-java-api" root="https://packagecloud.io/utPLSQL/utPLSQL-java-api/maven2" m2compatible="true"/> <ibiblio name="ibiblio" m2compatible="true"/> </chain> </resolvers></ivysettings>
@Grapes(@Grab(group='org.utplsql', module='java-api', version='3.1.8'))
POMs
Name | MD5 | SHA1 | SHA256 | Size | Download |
---|---|---|---|---|---|
java-api-3.1.8.pom | 30cd49084f30cde625a21408b1b72f84 | 086309c2cb86a4766b8bf4f3e46af9256f88b5f0 | d55ddd4a3580bbe91659062ef77e804eaf9ebbe398bf272fac6e3f4c52f218be | 1.78 KB |
JARs
Name | MD5 | SHA1 | SHA256 | Size | Download |
---|---|---|---|---|---|
java-api-3.1.8.jar | ec5625865df92660478aa6ff81a1841e | 279087b91ee2a516e3f132714f4671e3c0347d14 | a6e15b718e1aa4d6ac937d242a8de7bb2030e5a7606b26d4fc268d81486f2203 | 188 KB |
Dependencies
Group | Artifact | Version | Scope |
---|---|---|---|
com.google.code.findbugs | jsr305 | 3.0.2 | compile |
org.slf4j | slf4j-api | 1.7.26 | runtime |
com.oracle.ojdbc | ojdbc8 | 19.3.0.0 | runtime |
com.oracle.ojdbc | orai18n | 19.3.0.0 | runtime |
org.junit.jupiter | junit-jupiter | 5.5.2 | test |
org.hamcrest | hamcrest | 2.1 | test |
org.mockito | mockito-core | 3.0.0 | test |
Uploaded
over 5 years agoPackage Size
188 KBDownloads
3,247
wget
wget --content-disposition "https://packagecloud.io/utPLSQL/utPLSQL-java-api/packages/java/org.utplsql/java-api-3.1.8.jar/artifacts/java-api-3.1.8.jar/download?distro_version_id=167"