diff --git a/build.gradle b/build.gradle index 03fb1b34347a3ef07411b8dc6662abb21bd52680..c321f358928c433e31a8cd3b187396881acf7c1e 100644 --- a/build.gradle +++ b/build.gradle @@ -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' } } diff --git a/ribbon-core/src/main/java/com/netflix/client/config/ClientConfigFactory.java b/ribbon-core/src/main/java/com/netflix/client/config/ClientConfigFactory.java index fe9c7402f41adb1e9d37986664813e30264d196d..7e1ac7286bf36e98815ce29cff175353b0b2778d 100644 --- a/ribbon-core/src/main/java/com/netflix/client/config/ClientConfigFactory.java +++ b/ribbon-core/src/main/java/com/netflix/client/config/ClientConfigFactory.java @@ -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;