Skip to content

Commit

Permalink
added remote dependencies and comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Ks89 committed Oct 27, 2015
1 parent 72b7ba5 commit cd06df4
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 7 deletions.
15 changes: 8 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@
buildscript {
repositories {
jcenter()
maven {
url "http://localhost:8081/nexus/content/groups/public"
}
// maven {
// //use this if you want to use a local Sonatype nexus server -> only during development
// url "http://localhost:8081/nexus/content/groups/public"
// }
}
dependencies {
classpath 'com.android.tools.build:gradle:1.3.1'
Expand All @@ -14,9 +15,9 @@ buildscript {
allprojects {
repositories {
jcenter()
maven {
url "http://localhost:8081/nexus/content/groups/public"
}

// maven {
// //use this if you want to use a local Sonatype nexus server -> only during development
// url "http://localhost:8081/nexus/content/groups/public"
// }
}
}
7 changes: 7 additions & 0 deletions sPFChatDemo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,13 @@ android {
lintOptions {
abortOnError false
}

//to include my remote repository where I deployed the dependencies
repositories {
maven {
url "http://dl.bintray.com/ks89/maven"
}
}
}

task wrapper(type: Wrapper) {
Expand Down

0 comments on commit cd06df4

Please sign in to comment.