From 278fa89df2b8cb6c450d2501cdc927496b4bfc92 Mon Sep 17 00:00:00 2001 From: sefthuko Date: Thu, 20 Dec 2018 17:50:32 -0800 Subject: [PATCH] Remove repository requirement Attempting to use this plugin in companies that ban the use of external repositories fails. This pushes the requirement of having a suitable repo out to the users of the plugin. --- .../groovy/com/jetbrains/python/envs/PythonEnvsPlugin.groovy | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/main/groovy/com/jetbrains/python/envs/PythonEnvsPlugin.groovy b/src/main/groovy/com/jetbrains/python/envs/PythonEnvsPlugin.groovy index b61b270..23230c4 100644 --- a/src/main/groovy/com/jetbrains/python/envs/PythonEnvsPlugin.groovy +++ b/src/main/groovy/com/jetbrains/python/envs/PythonEnvsPlugin.groovy @@ -239,10 +239,6 @@ class PythonEnvsPlugin implements Plugin { void apply(Project project) { PythonEnvsExtension envs = project.extensions.create("envs", PythonEnvsExtension.class) - project.repositories { - mavenCentral() - } - project.configurations { jython }