From 7994da20c778efb24a3f8f29219a40c844465be4 Mon Sep 17 00:00:00 2001 From: "Vladislav.Soroka" Date: Fri, 8 Nov 2013 15:10:43 +0400 Subject: [PATCH] External System: test fix Related task: IDEA-79466 gradle support should generate web module configuration --- .../openapi/externalSystem/test/ExternalProjectBuilder.groovy | 3 +++ 1 file changed, 3 insertions(+) diff --git a/platform/external-system-impl/testSrc/com/intellij/openapi/externalSystem/test/ExternalProjectBuilder.groovy b/platform/external-system-impl/testSrc/com/intellij/openapi/externalSystem/test/ExternalProjectBuilder.groovy index b0480aca8812..957f0724107a 100644 --- a/platform/external-system-impl/testSrc/com/intellij/openapi/externalSystem/test/ExternalProjectBuilder.groovy +++ b/platform/external-system-impl/testSrc/com/intellij/openapi/externalSystem/test/ExternalProjectBuilder.groovy @@ -81,6 +81,9 @@ class ExternalProjectBuilder extends BuilderSupport { getLevel(attributes)) data.scope = getScope(attributes) return parentNode.createChild(ProjectKeys.LIBRARY_DEPENDENCY, data) + case 'extraModel': + DataNode parentNode = current as DataNode + return parentNode.createChild(attributes.key, attributes.model) case 'task': DataNode parentNode = current as DataNode ProjectSystemId projectSystemId = attributes.projectSystemId ?: TEST_EXTERNAL_SYSTEM_ID