Skip to content

Instantly share code, notes, and snippets.

@vacax
Created July 26, 2019 21:12
Show Gist options
  • Save vacax/d3c4097d570a2280d7dd4a01b8e6d67e to your computer and use it in GitHub Desktop.
Save vacax/d3c4097d570a2280d7dd4a01b8e6d67e to your computer and use it in GitHub Desktop.
Cliente Rest Unirest - gradle
plugins {
id 'java'
id 'application'
}
group 'edu.pucmm'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
mainClassName = 'edu.pucmm.hlr.Main'
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
compile("com.konghq:unirest-java:2.3.11")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment