Skip to content
This repository was archived by the owner on Oct 9, 2018. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 47 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
apply plugin: 'java'

buildscript {
repositories {
mavenCentral()
}
}

repositories {
mavenCentral()
}

version = '1.0.0'
jar {
manifest {
attributes 'Implementation-Title': 'JavaOdesk', 'Implementation-Version': version
}
}

dependencies {
testCompile 'org.mockito:mockito-all:1.9.5'
testCompile 'junit:junit:4.11'
testCompile 'org.powermock:powermock-module-junit4:1.5.5'
testCompile 'org.powermock:powermock-api-mockito:1.5.5'

compile 'org.apache.httpcomponents:httpclient:4.3.5'
compile 'org.json:json:20090211'
compile 'oauth.signpost:signpost-core:1.2.1.2'
compile 'oauth.signpost:oauth-signpost:1.2.1.2'
compile 'oauth.signpost:signpost-commonshttp4:1.2.1.2'
}

test {
testLogging {
// Show that tests are run in the command-line output
events 'passed'
}
}

sourceSets {
main {
java.srcDirs = ["src"]
}
test {
java.srcDirs = ["test"]
}
}
Binary file added gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
6 changes: 6 additions & 0 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#Mon Mar 31 18:28:35 GMT+02:00 2014
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=http\://services.gradle.org/distributions/gradle-2.2.1-all.zip
164 changes: 164 additions & 0 deletions gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

90 changes: 90 additions & 0 deletions gradlew.bat

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Empty file added settings.gradle
Empty file.