File tree 2 files changed +7
-12
lines changed
guice/src/main/java/io/cucumber/guice/impl
2 files changed +7
-12
lines changed Original file line number Diff line number Diff line change @@ -14,17 +14,17 @@ public class SequentialScenarioScope implements ScenarioScope {
14
14
* Scopes a provider. The returned provider returns objects from this scope.
15
15
* If an object does not exist in this scope, the provider can use the given
16
16
* unscoped provider to retrieve one.
17
- * <p/ >
18
- * <p> Scope implementations are strongly encouraged to override
17
+ * <p>
18
+ * Scope implementations are strongly encouraged to override
19
19
* {@link Object#toString} in the returned provider and include the backing
20
20
* provider's {@code toString()} output.
21
21
*
22
22
* @param key binding key
23
23
* @param unscoped locates an instance when one doesn't already exist in this
24
24
* scope.
25
25
* @return a new provider which only delegates to the given unscoped provider
26
- * when an instance of the requested object doesn't already exist in this
27
- * scope
26
+ * when an instance of the requested object doesn't already exist in this
27
+ * scope
28
28
*/
29
29
@ Override
30
30
public <T > Provider <T > scope (final Key <T > key , final Provider <T > unscoped ) {
Original file line number Diff line number Diff line change 683
683
<version >3.0.0-M1</version >
684
684
<configuration >
685
685
<use >false</use >
686
- <excludePackageNames >cucumber.runtime,cucumber.runtime.*,org.springframework
687
- </excludePackageNames >
686
+ <excludePackageNames >io.cucumber.*,org.springframework</excludePackageNames >
688
687
<links >
689
688
<link >http://docs.oracle.com/javase/7/docs/api/</link >
690
689
<link >http://junit.sourceforge.net/javadoc/</link >
810
809
<classes >
811
810
<regex >true</regex >
812
811
<exclude >
813
- <item >cucumber\.runner\..*</item >
814
- <item >cucumber\.runtime\..*</item >
815
- <item >cucumber\.util\..*</item >
812
+ <item >io\.cucumber..*</item >
816
813
</exclude >
817
814
</classes >
818
815
<packages >
819
816
<regex >true</regex >
820
817
<exclude >
821
- <item >cucumber\.runner\..*</item >
822
- <item >cucumber\.runtime\..*</item >
823
- <item >cucumber\.util\..*</item >
818
+ <item >io\.cucumber\..*</item >
824
819
<!-- The logging dependencies for Spring are provided. This causes them to
825
820
be missing in the dependency hierarchy. A false positive. -->
826
821
<item >org\.springframework\.core\..*</item >
You can’t perform that action at this time.
0 commit comments