From 75b5dd717aa55582cc1eb2511c17f8fa40dfb825 Mon Sep 17 00:00:00 2001 From: Michal Krzyzanowski Date: Fri, 29 Jun 2018 13:43:31 +0200 Subject: [PATCH] 174 moved module to guice package; missing license headers added --- .../cognifide/qa/bb/eyes/EyesProvider.java | 19 +++++++++++++++++++ .../com/cognifide/qa/bb/eyes/WithEyes.java | 19 +++++++++++++++++++ .../qa/bb/eyes/{ => guice}/EyesModule.java | 5 +++-- 3 files changed, 41 insertions(+), 2 deletions(-) rename bb-eyes/src/main/java/com/cognifide/qa/bb/eyes/{ => guice}/EyesModule.java (87%) diff --git a/bb-eyes/src/main/java/com/cognifide/qa/bb/eyes/EyesProvider.java b/bb-eyes/src/main/java/com/cognifide/qa/bb/eyes/EyesProvider.java index 92af7244..f6d80685 100644 --- a/bb-eyes/src/main/java/com/cognifide/qa/bb/eyes/EyesProvider.java +++ b/bb-eyes/src/main/java/com/cognifide/qa/bb/eyes/EyesProvider.java @@ -1,3 +1,22 @@ +/*- + * #%L + * Bobcat + * %% + * Copyright (C) 2018 Cognifide Ltd. + * %% + * 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. + * #L% + */ package com.cognifide.qa.bb.eyes; import com.applitools.eyes.selenium.Eyes; diff --git a/bb-eyes/src/main/java/com/cognifide/qa/bb/eyes/WithEyes.java b/bb-eyes/src/main/java/com/cognifide/qa/bb/eyes/WithEyes.java index 6c3ec874..fa08dfb3 100644 --- a/bb-eyes/src/main/java/com/cognifide/qa/bb/eyes/WithEyes.java +++ b/bb-eyes/src/main/java/com/cognifide/qa/bb/eyes/WithEyes.java @@ -1,3 +1,22 @@ +/*- + * #%L + * Bobcat + * %% + * Copyright (C) 2018 Cognifide Ltd. + * %% + * 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. + * #L% + */ package com.cognifide.qa.bb.eyes; import org.junit.rules.TestRule; diff --git a/bb-eyes/src/main/java/com/cognifide/qa/bb/eyes/EyesModule.java b/bb-eyes/src/main/java/com/cognifide/qa/bb/eyes/guice/EyesModule.java similarity index 87% rename from bb-eyes/src/main/java/com/cognifide/qa/bb/eyes/EyesModule.java rename to bb-eyes/src/main/java/com/cognifide/qa/bb/eyes/guice/EyesModule.java index 54fd55ff..60940469 100644 --- a/bb-eyes/src/main/java/com/cognifide/qa/bb/eyes/EyesModule.java +++ b/bb-eyes/src/main/java/com/cognifide/qa/bb/eyes/guice/EyesModule.java @@ -2,7 +2,7 @@ * #%L * Bobcat * %% - * Copyright (C) 2016 Cognifide Ltd. + * Copyright (C) 2018 Cognifide Ltd. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -17,9 +17,10 @@ * limitations under the License. * #L% */ -package com.cognifide.qa.bb.eyes; +package com.cognifide.qa.bb.eyes.guice; import com.applitools.eyes.selenium.Eyes; +import com.cognifide.qa.bb.eyes.EyesProvider; import com.google.inject.AbstractModule; public class EyesModule extends AbstractModule {