Skip to content

Commit

Permalink
Exclude some modules from gradle file
Browse files Browse the repository at this point in the history
  • Loading branch information
austintaylor committed Nov 17, 2014
1 parent f229157 commit 50ebf03
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
1 change: 0 additions & 1 deletion UVDemo/UVDemo.iml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@
<orderEntry type="library" exported="" name="support-annotations-21.0.0" level="project" />
<orderEntry type="library" exported="" name="support-v4-21.0.0" level="project" />
<orderEntry type="library" exported="" name="commons-codec-1.8" level="project" />
<orderEntry type="library" exported="" name="httpcore-4.0.1" level="project" />
<orderEntry type="library" exported="" name="signpost-core-1.2.1.2" level="project" />
<orderEntry type="module" module-name="UserVoiceSDK" exported="" />
</component>
Expand Down
10 changes: 8 additions & 2 deletions UserVoiceSDK/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,12 @@ dependencies {
compile 'com.android.support:support-v4:21.'
compile 'com.android.support:appcompat-v7:21.+'
compile 'commons-codec:commons-codec:1.8'
compile 'oauth.signpost:signpost-commonshttp4:1.2.1.2'
compile 'oauth.signpost:signpost-core:1.2.1.2'
compile ('oauth.signpost:signpost-commonshttp4:1.2.1.2') {
exclude module: 'commons-logging'
exclude module: 'httpcore'
exclude module: 'httpclient'
}
compile ('oauth.signpost:signpost-core:1.2.1.2') {
exclude module: 'commons-codec'
}
}

0 comments on commit 50ebf03

Please sign in to comment.