Skip to content

Instantly share code, notes, and snippets.

@recursivecodes
Created October 10, 2019 19:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save recursivecodes/70dbcf9f838e7b3fc8b42512c7bd7244 to your computer and use it in GitHub Desktop.
Save recursivecodes/70dbcf9f838e7b3fc8b42512c7bd7244 to your computer and use it in GitHub Desktop.
build.gradle
plugins {
    id 'java'
    id 'application'
}
group 'codes.recursive'
version '0.1-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
    mavenCentral()
}
application {
    mainClassName = 'codes.recursive.OnsSendExample'
}
dependencies {
    compile group: 'com.oracle.oci.sdk', name: 'oci-java-sdk-full', version: '1.9.0'
    testCompile group: 'junit', name: 'junit', version: '4.12'
}
tasks.withType(JavaExec) {
    systemProperties System.properties
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment