Skip to content

Commit

Permalink
Add support for local deps
Browse files Browse the repository at this point in the history
  • Loading branch information
simonepri committed Aug 5, 2017
1 parent df3466f commit b8ed5d4
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -348,10 +348,10 @@ local.properties
.worksheet

### Eclipse Patch ###
# Eclipse Core
# Eclipse Core
.project

# JDT-specific (Eclipse Java Development Tools)
# JDT-specific (Eclipse Java Development Tools)
.classpath
### Eclipse - END ###

Expand Down Expand Up @@ -467,4 +467,11 @@ Temporary Items

# .nfs files are created when an open file is removed but is still being accessed
.nfs*
### Linux - END ###
### Linux - END ###

### Overrides - START ###

# Local deps
!libs/*.jar

### Overrides - END ###
3 changes: 3 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ repositories {
// You can declare any Maven/Ivy/file repository here.
jcenter()
mavenCentral()
flatDir {
dirs 'libs'
}
}

javadoc {
Expand Down

0 comments on commit b8ed5d4

Please sign in to comment.