Move groovy importers to org.jetbrains.idea.maven.plugins.groovy package

This commit is contained in:
Sergey Evdokimov
2014-02-11 16:43:36 +04:00
parent bce543e476
commit 5d8f0b94b7
5 changed files with 10 additions and 7 deletions
@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jetbrains.idea.maven.importing;
package org.jetbrains.idea.maven.plugins.groovy;
public class GroovyGmavenImporter extends GroovyImporter {
public GroovyGmavenImporter() {
@@ -1,8 +1,11 @@
package org.jetbrains.idea.maven.importing;
package org.jetbrains.idea.maven.plugins.groovy;
import com.intellij.openapi.module.Module;
import com.intellij.util.PairConsumer;
import org.jdom.Element;
import org.jetbrains.idea.maven.importing.MavenImporter;
import org.jetbrains.idea.maven.importing.MavenModifiableModelsProvider;
import org.jetbrains.idea.maven.importing.MavenRootModelAdapter;
import org.jetbrains.idea.maven.project.MavenProject;
import org.jetbrains.idea.maven.project.MavenProjectChanges;
import org.jetbrains.idea.maven.project.MavenProjectsProcessorTask;
@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jetbrains.idea.maven.importing;
package org.jetbrains.idea.maven.plugins.groovy;
public class Groovy_1_0_Importer extends GroovyImporter {
public Groovy_1_0_Importer() {
@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jetbrains.idea.maven.importing;
package org.jetbrains.idea.maven.plugins.groovy;
public class Groovy_1_1_plus_Importer extends GroovyImporter {
public Groovy_1_1_plus_Importer() {
@@ -1,8 +1,8 @@
<idea-plugin url="http://www.jetbrains.com/idea">
<extensions defaultExtensionNs="org.jetbrains.idea.maven">
<importer implementation="org.jetbrains.idea.maven.importing.Groovy_1_0_Importer"/>
<importer implementation="org.jetbrains.idea.maven.importing.Groovy_1_1_plus_Importer"/>
<importer implementation="org.jetbrains.idea.maven.importing.GroovyGmavenImporter"/>
<importer implementation="org.jetbrains.idea.maven.plugins.groovy.Groovy_1_0_Importer"/>
<importer implementation="org.jetbrains.idea.maven.plugins.groovy.Groovy_1_1_plus_Importer"/>
<importer implementation="org.jetbrains.idea.maven.plugins.groovy.GroovyGmavenImporter"/>
<pluginDescriptor mavenId="org.codehaus.groovy.maven:gmaven-plugin">
<param name="source" languageProvider="org.jetbrains.idea.maven.plugins.groovy.MavenGroovyLanguageProvider"/>