Index: utils/pub/validator.dart |
diff --git a/utils/pub/validator.dart b/utils/pub/validator.dart |
index 5c0c8507ce5e430629c677341f4737d2aedb681b..48f7768dd09c5e77fef39a325f08a98ef3b6b544 100644 |
--- a/utils/pub/validator.dart |
+++ b/utils/pub/validator.dart |
@@ -9,6 +9,7 @@ import 'log.dart' as log; |
import 'io.dart'; |
import 'system_cache.dart'; |
import 'utils.dart'; |
+import 'validator/dependency.dart'; |
import 'validator/lib.dart'; |
import 'validator/license.dart'; |
import 'validator/name.dart'; |
@@ -44,7 +45,8 @@ abstract class Validator { |
new LibValidator(entrypoint), |
new LicenseValidator(entrypoint), |
new NameValidator(entrypoint), |
- new PubspecFieldValidator(entrypoint) |
+ new PubspecFieldValidator(entrypoint), |
+ new DependencyValidator(entrypoint) |
]; |
// TODO(nweiz): The sleep 0 here forces us to go async. This works around |