Skip to content

Commit

Permalink
Merge pull request #148 from allenxwang/eran-di
Browse files Browse the repository at this point in the history
Added missing dependency for Inject.
  • Loading branch information
Allen Wang committed Jul 30, 2014
2 parents cbfd08d + 3a9b775 commit f806e61
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 5 deletions.
11 changes: 6 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -158,11 +158,12 @@ project(':ribbon') {
tasks.build { dependsOn(examplesClasses) }

dependencies {
compile 'com.netflix.hystrix:hystrix-core:1.4.0-RC4'
compile 'com.netflix.evcache:evcache-client:1.0.5'
compile project(':ribbon-transport')
testCompile project(':ribbon-test')
testCompile 'com.google.mockwebserver:mockwebserver:20130706'
compile 'com.netflix.hystrix:hystrix-core:1.4.0-RC4'
compile 'com.netflix.evcache:evcache-client:1.0.5'
compile 'javax.inject:javax.inject:1'
compile project(':ribbon-transport')
testCompile project(':ribbon-test')
testCompile 'com.google.mockwebserver:mockwebserver:20130706'

}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
/*
* Copyright 2014 Netflix, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.netflix.client.config;


Expand Down

0 comments on commit f806e61

Please sign in to comment.