KT-11642 Kotlin Maven configurator tags order

This commit is contained in:
Sergey Mashkov
2016-03-18 19:29:51 +03:00
parent 918f843cd0
commit 7da92872a8
16 changed files with 723 additions and 320 deletions
@@ -17,7 +17,6 @@
package org.jetbrains.kotlin.idea.configuration; package org.jetbrains.kotlin.idea.configuration;
import com.intellij.openapi.module.Module; import com.intellij.openapi.module.Module;
import com.intellij.openapi.vfs.VirtualFile;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
import org.jetbrains.idea.maven.dom.model.MavenDomPlugin; import org.jetbrains.idea.maven.dom.model.MavenDomPlugin;
import org.jetbrains.kotlin.resolve.TargetPlatform; import org.jetbrains.kotlin.resolve.TargetPlatform;
@@ -26,10 +25,11 @@ import org.jetbrains.kotlin.resolve.jvm.platform.JvmPlatform;
public class KotlinJavaMavenConfigurator extends KotlinMavenConfigurator { public class KotlinJavaMavenConfigurator extends KotlinMavenConfigurator {
private static final String NAME = "maven"; private static final String NAME = "maven";
private static final String STD_LIB_ID = "kotlin-stdlib"; private static final String STD_LIB_ID = "kotlin-stdlib";
private static final String TEST_LIB_ID = "kotlin-test-junit";
private static final String PRESENTABLE_TEXT = "Maven"; private static final String PRESENTABLE_TEXT = "Maven";
public KotlinJavaMavenConfigurator() { public KotlinJavaMavenConfigurator() {
super(STD_LIB_ID, NAME, PRESENTABLE_TEXT); super(STD_LIB_ID, TEST_LIB_ID, true, NAME, PRESENTABLE_TEXT);
} }
@Override @Override
@@ -38,9 +38,9 @@ public class KotlinJavaMavenConfigurator extends KotlinMavenConfigurator {
} }
@Override @Override
protected void createExecutions(VirtualFile virtualFile, MavenDomPlugin kotlinPlugin, Module module) { protected void createExecutions(@NotNull PomFile pomFile, @NotNull MavenDomPlugin kotlinPlugin, @NotNull Module module) {
createExecution(virtualFile, kotlinPlugin, module, false); createExecution(pomFile, kotlinPlugin, module, false);
createExecution(virtualFile, kotlinPlugin, module, true); createExecution(pomFile, kotlinPlugin, module, true);
} }
@NotNull @NotNull
@@ -17,7 +17,6 @@
package org.jetbrains.kotlin.idea.configuration; package org.jetbrains.kotlin.idea.configuration;
import com.intellij.openapi.module.Module; import com.intellij.openapi.module.Module;
import com.intellij.openapi.vfs.VirtualFile;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
import org.jetbrains.idea.maven.dom.model.MavenDomPlugin; import org.jetbrains.idea.maven.dom.model.MavenDomPlugin;
import org.jetbrains.kotlin.js.resolve.JsPlatform; import org.jetbrains.kotlin.js.resolve.JsPlatform;
@@ -32,7 +31,7 @@ public class KotlinJavascriptMavenConfigurator extends KotlinMavenConfigurator {
private static final String PRESENTABLE_TEXT = "JavaScript Maven - experimental"; private static final String PRESENTABLE_TEXT = "JavaScript Maven - experimental";
public KotlinJavascriptMavenConfigurator() { public KotlinJavascriptMavenConfigurator() {
super(STD_LIB_ID, NAME, PRESENTABLE_TEXT); super(STD_LIB_ID, null, false, NAME, PRESENTABLE_TEXT);
} }
@Override @Override
@@ -41,9 +40,9 @@ public class KotlinJavascriptMavenConfigurator extends KotlinMavenConfigurator {
} }
@Override @Override
protected void createExecutions(VirtualFile virtualFile, MavenDomPlugin kotlinPlugin, Module module) { protected void createExecutions(@NotNull PomFile pomFile, @NotNull MavenDomPlugin kotlinPlugin, @NotNull Module module) {
createExecution(virtualFile, kotlinPlugin, module, false); createExecution(pomFile, kotlinPlugin, module, false);
createExecution(virtualFile, kotlinPlugin, module, true); createExecution(pomFile, kotlinPlugin, module, true);
} }
@NotNull @NotNull
@@ -35,18 +35,21 @@ import com.intellij.psi.PsiFile;
import com.intellij.psi.PsiManager; import com.intellij.psi.PsiManager;
import com.intellij.psi.search.FileTypeIndex; import com.intellij.psi.search.FileTypeIndex;
import com.intellij.psi.search.GlobalSearchScope; import com.intellij.psi.search.GlobalSearchScope;
import com.intellij.psi.xml.XmlTag; import com.intellij.psi.xml.XmlFile;
import com.intellij.util.xml.DomElement;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable; import org.jetbrains.annotations.Nullable;
import org.jetbrains.idea.maven.dom.MavenDomUtil; import org.jetbrains.idea.maven.dom.MavenDomUtil;
import org.jetbrains.idea.maven.dom.model.*; import org.jetbrains.idea.maven.dom.model.*;
import org.jetbrains.idea.maven.model.MavenId;
import org.jetbrains.idea.maven.project.MavenProjectsManager; import org.jetbrains.idea.maven.project.MavenProjectsManager;
import org.jetbrains.idea.maven.utils.MavenArtifactScope;
import org.jetbrains.jps.model.java.JavaSourceRootType; import org.jetbrains.jps.model.java.JavaSourceRootType;
import org.jetbrains.kotlin.idea.KotlinPluginUtil; import org.jetbrains.kotlin.idea.KotlinPluginUtil;
import org.jetbrains.kotlin.idea.framework.ui.ConfigureDialogWithModulesAndVersion; import org.jetbrains.kotlin.idea.framework.ui.ConfigureDialogWithModulesAndVersion;
import java.util.ArrayList;
import java.util.Collection; import java.util.Collection;
import java.util.Collections;
import java.util.List; import java.util.List;
public abstract class KotlinMavenConfigurator implements KotlinProjectConfigurator { public abstract class KotlinMavenConfigurator implements KotlinProjectConfigurator {
@@ -65,17 +68,20 @@ public abstract class KotlinMavenConfigurator implements KotlinProjectConfigurat
private static final String TEST_COMPILE_EXECUTION_ID = "test-compile"; private static final String TEST_COMPILE_EXECUTION_ID = "test-compile";
private static final String COMPILE_EXECUTION_ID = "compile"; private static final String COMPILE_EXECUTION_ID = "compile";
private final String libraryId; private final String stdlibArtifactId;
private final String testArtifactId;
private final boolean addJunit;
private final String name; private final String name;
private final String presentableText; private final String presentableText;
protected KotlinMavenConfigurator(@NotNull String libraryId, @NotNull String name, @NotNull String presentableText) { protected KotlinMavenConfigurator(@NotNull String stdlibArtifactId, @Nullable String testArtifactId, boolean addJunit, @NotNull String name, @NotNull String presentableText) {
this.libraryId = libraryId; this.stdlibArtifactId = stdlibArtifactId;
this.testArtifactId = testArtifactId;
this.addJunit = addJunit;
this.name = name; this.name = name;
this.presentableText = presentableText; this.presentableText = presentableText;
} }
@Override @Override
public boolean isApplicable(@NotNull Module module) { public boolean isApplicable(@NotNull Module module) {
return KotlinPluginUtil.isMavenModule(module); return KotlinPluginUtil.isMavenModule(module);
@@ -99,10 +105,18 @@ public abstract class KotlinMavenConfigurator implements KotlinProjectConfigurat
return true; return true;
} }
MavenDomProjectModel domProjectModel = getMavenDomProjectModel(module); PsiFile psi = findModulePomFile(module);
if (domProjectModel == null) return false; if (psi == null
|| !psi.isValid()
|| !(psi instanceof XmlFile)
|| psi.getVirtualFile() == null
|| MavenDomUtil.getMavenDomProjectModel(module.getProject(), psi.getVirtualFile()) == null) {
return false;
}
return hasKotlinMavenPlugin(domProjectModel) && hasDependencyOnLibrary(domProjectModel); PomFile pom = new PomFile((XmlFile) psi);
return pom.hasPlugin(new MavenId(GROUP_ID, MAVEN_PLUGIN_ID, null)) && pom.hasDependency(new MavenId(GROUP_ID, stdlibArtifactId, null), MavenArtifactScope.COMPILE);
} }
@Override @Override
@@ -129,7 +143,7 @@ public abstract class KotlinMavenConfigurator implements KotlinProjectConfigurat
protected abstract boolean isKotlinModule(@NotNull Module module); protected abstract boolean isKotlinModule(@NotNull Module module);
protected abstract void createExecutions(VirtualFile virtualFile, MavenDomPlugin kotlinPlugin, Module module); protected abstract void createExecutions(@NotNull PomFile pomFile, @NotNull MavenDomPlugin kotlinPlugin, @NotNull Module module);
@NotNull @NotNull
protected String getGoal(boolean isTest) { protected String getGoal(boolean isTest) {
@@ -147,30 +161,39 @@ public abstract class KotlinMavenConfigurator implements KotlinProjectConfigurat
@NotNull final String version, @NotNull final String version,
@NotNull NotificationMessageCollector collector @NotNull NotificationMessageCollector collector
) { ) {
final VirtualFile virtualFile = file.getVirtualFile(); VirtualFile virtualFile = file.getVirtualFile();
assert virtualFile != null : "Virtual file should exists for psi file " + file.getName(); assert virtualFile != null : "Virtual file should exists for psi file " + file.getName();
final MavenDomProjectModel domModel = MavenDomUtil.getMavenDomProjectModel(module.getProject(), virtualFile); MavenDomProjectModel domModel = MavenDomUtil.getMavenDomProjectModel(module.getProject(), virtualFile);
if (domModel == null) { if (domModel == null) {
showErrorMessage(module.getProject(), null); showErrorMessage(module.getProject(), null);
return; return;
} }
new WriteCommandAction(file.getProject()) { new WriteCommandAction(file.getProject()) {
@Override @Override
protected void run(@NotNull Result result) { protected void run(@NotNull Result result) {
addKotlinVersionPropertyIfNeeded(domModel, version); PomFile pom = new PomFile((XmlFile) file);
pom.addProperty(KOTLIN_VERSION_PROPERTY, version);
if (ConfigureKotlinInProjectUtilsKt.isSnapshot(version)) { pom.addDependency(new MavenId(GROUP_ID, stdlibArtifactId, "${" + KOTLIN_VERSION_PROPERTY + "}"), MavenArtifactScope.COMPILE, null, false, null);
addPluginRepositoryIfNeeded(domModel, ConfigureKotlinInProjectUtilsKt.SNAPSHOT_REPOSITORY); if (testArtifactId != null) {
addLibraryRepositoryIfNeeded(domModel, ConfigureKotlinInProjectUtilsKt.SNAPSHOT_REPOSITORY); pom.addDependency(new MavenId(GROUP_ID, testArtifactId, "${" + KOTLIN_VERSION_PROPERTY + "}"), MavenArtifactScope.TEST, null, false, null);
}
if (addJunit) {
pom.addDependency(new MavenId("junit", "junit", "4.12"), MavenArtifactScope.TEST, null, false, null);
} }
if (isSnapshot(version)) {
pom.addLibraryRepository(ConfigureKotlinInProjectUtilsKt.SNAPSHOT_REPOSITORY, true, false);
pom.addPluginRepository(ConfigureKotlinInProjectUtilsKt.SNAPSHOT_REPOSITORY, true, false);
}
if (ConfigureKotlinInProjectUtilsKt.isEap(version)) { if (ConfigureKotlinInProjectUtilsKt.isEap(version)) {
addPluginRepositoryIfNeeded(domModel, ConfigureKotlinInProjectUtilsKt.EAP_REPOSITORY); pom.addLibraryRepository(ConfigureKotlinInProjectUtilsKt.EAP_REPOSITORY, true, false);
addLibraryRepositoryIfNeeded(domModel, ConfigureKotlinInProjectUtilsKt.EAP_REPOSITORY); pom.addPluginRepository(ConfigureKotlinInProjectUtilsKt.EAP_REPOSITORY, true, false);
} }
addPluginIfNeeded(domModel, module, virtualFile); MavenDomPlugin plugin = pom.addPlugin(new MavenId(GROUP_ID, MAVEN_PLUGIN_ID, "${" + KOTLIN_VERSION_PROPERTY + "}"));
addLibraryDependencyIfNeeded(domModel); createExecutions(pom, plugin, module);
CodeInsightUtilCore.forcePsiPostprocessAndRestoreElement(file); CodeInsightUtilCore.forcePsiPostprocessAndRestoreElement(file);
} }
@@ -180,32 +203,28 @@ public abstract class KotlinMavenConfigurator implements KotlinProjectConfigurat
} }
protected void createExecution( protected void createExecution(
@NotNull VirtualFile virtualFile, @NotNull PomFile pomFile,
@NotNull MavenDomPlugin kotlinPlugin, @NotNull MavenDomPlugin kotlinPlugin,
@NotNull Module module, @NotNull Module module,
boolean isTest boolean isTest
) { ) {
MavenDomPluginExecution execution = kotlinPlugin.getExecutions().addExecution(); MavenDomPluginExecution execution = pomFile.addExecution(kotlinPlugin, getExecutionId(isTest), getPhase(module, isTest), Collections.singletonList(getGoal(isTest)));
String tagValue = getExecutionId(isTest);
execution.getId().setStringValue(tagValue);
execution.getPhase().setStringValue(getPhase(module, isTest));
createTagIfNeeded(execution.getGoals(), "goal", getGoal(isTest));
XmlTag sourcesTag = createTagIfNeeded(execution.getConfiguration(), "sourceDirs", "");
List<String> sourceDirs = new ArrayList<String>();
for (ContentEntry contentEntry : ModuleRootManager.getInstance(module).getContentEntries()) { for (ContentEntry contentEntry : ModuleRootManager.getInstance(module).getContentEntries()) {
SourceFolder[] folders = contentEntry.getSourceFolders(); SourceFolder[] folders = contentEntry.getSourceFolders();
for (SourceFolder sourceFolder : folders) { for (SourceFolder sourceFolder : folders) {
if (isRelatedSourceRoot(isTest, sourceFolder)) { if (isRelatedSourceRoot(isTest, sourceFolder)) {
VirtualFile sourceFolderFile = sourceFolder.getFile(); VirtualFile sourceFolderFile = sourceFolder.getFile();
if (sourceFolderFile != null) { if (sourceFolderFile != null) {
String relativePath = VfsUtilCore.getRelativePath(sourceFolderFile, virtualFile.getParent(), '/'); String relativePath = VfsUtilCore.getRelativePath(sourceFolderFile, pomFile.getXmlFile().getVirtualFile().getParent(), '/');
XmlTag newTag = sourcesTag.createChildTag("source", sourcesTag.getNamespace(), relativePath, false); sourceDirs.add(relativePath);
sourcesTag.addSubTag(newTag, true);
} }
} }
} }
} }
pomFile.executionSourceDirs(execution, sourceDirs);
} }
private static boolean isRelatedSourceRoot(boolean isTest, SourceFolder folder) { private static boolean isRelatedSourceRoot(boolean isTest, SourceFolder folder) {
@@ -213,111 +232,6 @@ public abstract class KotlinMavenConfigurator implements KotlinProjectConfigurat
(!isTest && folder.getRootType() == JavaSourceRootType.SOURCE); (!isTest && folder.getRootType() == JavaSourceRootType.SOURCE);
} }
@Nullable
private static MavenDomProjectModel getMavenDomProjectModel(@NotNull Module module) {
PsiFile pomFile = findModulePomFile(module);
if (pomFile == null) return null;
VirtualFile virtualFile = pomFile.getVirtualFile();
assert virtualFile != null : "Virtual file should exists for psi file " + pomFile.getName();
MavenDomProjectModel domModel = MavenDomUtil.getMavenDomProjectModel(pomFile.getProject(), virtualFile);
assert domModel != null : "maven dom model should not be null";
return domModel;
}
private static boolean checkCoordinates(
@NotNull MavenDomShortArtifactCoordinates mavenDomElement,
@NotNull String groupId,
@NotNull String artifactId
) {
return groupId.equals(mavenDomElement.getGroupId().getRawText()) && artifactId.equals(mavenDomElement.getArtifactId().getRawText());
}
private static boolean hasKotlinMavenPlugin(@NotNull MavenDomProjectModel domModel) {
for(MavenDomPlugin mavenDomPlugin : domModel.getBuild().getPlugins().getPlugins()) {
if (checkCoordinates(mavenDomPlugin, GROUP_ID, MAVEN_PLUGIN_ID)) return true;
}
return false;
}
private boolean hasDependencyOnLibrary(@NotNull MavenDomProjectModel domModel) {
for(MavenDomDependency mavenDomDependency : domModel.getDependencies().getDependencies()) {
if (checkCoordinates(mavenDomDependency, GROUP_ID, libraryId)) return true;
}
return false;
}
private static void addKotlinVersionPropertyIfNeeded(MavenDomProjectModel domModel, String version) {
createTagIfNeeded(domModel.getProperties(), KOTLIN_VERSION_PROPERTY, version);
}
private static void addLibraryRepositoryIfNeeded(MavenDomProjectModel domModel, RepositoryDescription description) {
MavenDomRepositories repositories = domModel.getRepositories();
if (!isRepositoryConfigured(repositories.getRepositories(), description.getId())) {
MavenDomRepository newPluginRepository = repositories.addRepository();
configureRepository(newPluginRepository, description);
}
}
private static void addPluginRepositoryIfNeeded(MavenDomProjectModel domModel, RepositoryDescription description) {
MavenDomPluginRepositories pluginRepositories = domModel.getPluginRepositories();
if (!isRepositoryConfigured(pluginRepositories.getPluginRepositories(), description.getId())) {
MavenDomRepository newPluginRepository = pluginRepositories.addPluginRepository();
configureRepository(newPluginRepository, description);
}
}
private void addLibraryDependencyIfNeeded(MavenDomProjectModel domModel) {
for (MavenDomDependency dependency : domModel.getDependencies().getDependencies()) {
if (libraryId.equals(dependency.getArtifactId().getStringValue())) {
return;
}
}
MavenDomDependency dependency = MavenDomUtil.createDomDependency(domModel, null);
dependency.getGroupId().setStringValue("org.jetbrains.kotlin");
dependency.getArtifactId().setStringValue(libraryId);
dependency.getVersion().setStringValue("${" + KOTLIN_VERSION_PROPERTY + "}");
}
private void addPluginIfNeeded(MavenDomProjectModel domModel, Module module, VirtualFile virtualFile) {
MavenDomPlugins plugins = domModel.getBuild().getPlugins();
for (MavenDomPlugin plugin : plugins.getPlugins()) {
if (MAVEN_PLUGIN_ID.equals(plugin.getArtifactId().getStringValue())) {
return;
}
}
MavenDomPlugin kotlinPlugin = plugins.addPlugin();
kotlinPlugin.getArtifactId().setStringValue("kotlin-maven-plugin");
kotlinPlugin.getGroupId().setStringValue("org.jetbrains.kotlin");
kotlinPlugin.getVersion().setStringValue("${" + KOTLIN_VERSION_PROPERTY + "}");
createExecutions(virtualFile, kotlinPlugin, module);
}
private static boolean isRepositoryConfigured(List<MavenDomRepository> pluginRepositories, String repositoryId) {
for (MavenDomRepository repository : pluginRepositories) {
if (repositoryId.equals(repository.getId().getStringValue())) {
return true;
}
}
return false;
}
private static void configureRepository(
@NotNull MavenDomRepository repository,
@NotNull RepositoryDescription repositoryDescription
) {
repository.getId().setStringValue(repositoryDescription.getId());
repository.getName().setStringValue(repositoryDescription.getName());
repository.getUrl().setStringValue(repositoryDescription.getUrl());
createTagIfNeeded(repository.getReleases(), "enabled", Boolean.toString(!repositoryDescription.isSnapshot()));
createTagIfNeeded(repository.getSnapshots(), "enabled", Boolean.toString(repositoryDescription.isSnapshot()));
}
@NotNull @NotNull
private static String getPhase(@NotNull Module module, boolean isTest) { private static String getPhase(@NotNull Module module, boolean isTest) {
if (hasJavaFiles(module)) { if (hasJavaFiles(module)) {
@@ -344,15 +258,8 @@ public abstract class KotlinMavenConfigurator implements KotlinProjectConfigurat
return null; return null;
} }
@NotNull private static boolean isSnapshot(@NotNull String version) {
private static XmlTag createTagIfNeeded(@NotNull DomElement parent, @NotNull String tagName, @NotNull String value) { return version.contains("SNAPSHOT");
XmlTag parentTag = parent.ensureTagExists();
XmlTag tagWithGivenName = parentTag.findFirstSubTag(tagName);
if (tagWithGivenName != null) {
return tagWithGivenName;
}
XmlTag newTag = parentTag.createChildTag(tagName, parentTag.getNamespace(), value, false);
return parentTag.addSubTag(newTag, true);
} }
private static boolean canConfigureFile(@NotNull PsiFile file) { private static boolean canConfigureFile(@NotNull PsiFile file) {
@@ -0,0 +1,351 @@
/*
* Copyright 2010-2016 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jetbrains.kotlin.idea.configuration
import com.intellij.psi.PsiElement
import com.intellij.psi.PsiElementVisitor
import com.intellij.psi.PsiWhiteSpace
import com.intellij.psi.XmlElementFactory
import com.intellij.psi.xml.XmlFile
import com.intellij.psi.xml.XmlTag
import com.intellij.psi.xml.XmlText
import com.intellij.util.xml.GenericDomValue
import org.jetbrains.idea.maven.dom.MavenDomElement
import org.jetbrains.idea.maven.dom.MavenDomUtil
import org.jetbrains.idea.maven.dom.model.*
import org.jetbrains.idea.maven.model.MavenId
import org.jetbrains.idea.maven.utils.MavenArtifactScope
import java.util.*
class PomFile(val xmlFile: XmlFile) {
private val domModel = MavenDomUtil.getMavenDomProjectModel(xmlFile.project, xmlFile.virtualFile) ?: throw IllegalStateException("No DOM model found for pom ${xmlFile.name}")
private val nodesByName = HashMap<String, XmlTag>()
private var projectElement: XmlTag? = null
init {
xmlFile.document?.accept(object : PsiElementVisitor() {
override fun visitElement(element: PsiElement) {
super.visitElement(element)
if (element is XmlTag && element.localName in recommendedElementsOrder) {
nodesByName[element.localName] = element
}
else if (element is XmlTag && element.localName == "project") {
projectElement = element
element.acceptChildren(this)
}
else {
element.acceptChildren(this)
}
}
})
}
fun addProperty(name: String, value: String) {
projectElement?.let { project ->
val properties = ensureElement(project, "properties")
val existing = properties.children.filterIsInstance<XmlTag>().filter { it.localName == name }
if (existing.isNotEmpty()) {
for (tag in existing) {
val textNode = tag.children.filterIsInstance<XmlText>().firstOrNull()
if (textNode != null) {
textNode.value = value
}
else {
tag.replace(project.createChildTag(name, project.namespace, value, false))
}
}
}
else {
properties.add(project.createChildTag(name, project.namespace, value, false))
}
}
}
fun addDependency(artifact: MavenId, scope: MavenArtifactScope? = null, classifier: String? = null, optional: Boolean = false, systemPath: String? = null): MavenDomDependency {
require(systemPath == null || scope == MavenArtifactScope.SYSTEM) { "systemPath is only applicable for system scope dependency" }
ensureDependencies()
val versionless = artifact.withNoVersion()
val dependency = domModel.dependencies.dependencies.firstOrNull { it.matches(versionless) } ?: domModel.dependencies.addDependency()
dependency.groupId.stringValue = artifact.groupId
dependency.artifactId.stringValue = artifact.artifactId
dependency.version.stringValue = artifact.version
dependency.classifier.stringValue = classifier
if (scope != null && scope != MavenArtifactScope.COMPILE) {
dependency.scope.stringValue = scope.name.toLowerCase()
}
if (optional) {
dependency.optional.value = optional
}
dependency.systemPath.stringValue = systemPath
dependency.ensureTagExists()
return dependency
}
fun addPlugin(artifact: MavenId): MavenDomPlugin {
ensureBuild()
val groupArtifact = artifact.withNoVersion()
val plugin = domModel.build.plugins.plugins.firstOrNull { it.matches(groupArtifact) } ?: domModel.build.plugins.addPlugin()
plugin.groupId.stringValue = artifact.groupId
plugin.artifactId.stringValue = artifact.artifactId
plugin.version.stringValue = artifact.version
plugin.ensureTagExists()
return plugin
}
fun addExecution(plugin: MavenDomPlugin, executionId: String, phase: String, goals: List<String>): MavenDomPluginExecution {
require(goals.isNotEmpty()) { "Execution $executionId requires at least one goal but empty list has been provided" }
require(executionId.isNotEmpty()) { "executionId shouldn't be empty" }
require(phase.isNotEmpty()) { "phase shouldn't be empty" }
val execution = plugin.executions.executions.firstOrNull { it.id.stringValue == executionId } ?: plugin.executions.addExecution()
execution.id.stringValue = executionId
execution.phase.stringValue = phase
execution.goals.ensureTagExists()
val existingGoals = execution.goals.goals.mapNotNull { it.rawText }
for (goal in goals.filter { it !in existingGoals }) {
val goalTag = execution.goals.xmlTag.createChildTag("goal", plugin.xmlElementNamespace, goal, false)
execution.goals.xmlTag.add(goalTag)
}
return execution
}
fun executionSourceDirs(execution: MavenDomPluginExecution, sourceDirs: List<String>) {
ensureBuild()
val isTest = execution.goals.goals.any { it.stringValue?.let { "test" in it } ?: false }
val defaultDir = if (isTest) "test" else "main"
val singleDirectoryElement = if (isTest) {
domModel.build.testSourceDirectory
}
else {
domModel.build.sourceDirectory
}
if (sourceDirs.isEmpty() || sourceDirs.singleOrNull() == "src/$defaultDir/java") {
execution.configuration.xmlTag?.findSubTags("sourceDirs")?.forEach { it.deleteCascade() }
singleDirectoryElement.undefine()
}
else if (sourceDirs.size == 1) {
singleDirectoryElement.stringValue = sourceDirs.single()
execution.configuration.xmlTag?.findSubTags("sourceDirs")?.forEach { it.deleteCascade() }
}
else {
val sourceDirsTag = executionConfiguration(execution, "sourceDirs")
val newSourceDirsTag = execution.configuration.createChildTag("sourceDirs")
for (dir in sourceDirs) {
newSourceDirsTag.add(newSourceDirsTag.createChildTag("source", dir))
}
sourceDirsTag.replace(newSourceDirsTag)
}
}
fun executionConfiguration(execution: MavenDomPluginExecution, name: String): XmlTag {
val configurationTag = execution.configuration.ensureTagExists()!!
val existingTag = configurationTag.findSubTags(name).firstOrNull()
if (existingTag != null) {
return existingTag
}
val newTag = configurationTag.createChildTag(name, configurationTag.namespace, null, false)!!
return configurationTag.add(newTag) as XmlTag
}
fun addPluginRepository(id: String, name: String, url: String, snapshots: Boolean = false, releases: Boolean = true): MavenDomRepository {
ensurePluginRepositories()
return addRepository(id, name, url, snapshots, releases, { domModel.pluginRepositories.pluginRepositories }, { domModel.pluginRepositories.addPluginRepository() })
}
fun addLibraryRepository(id: String, name: String, url: String, snapshots: Boolean = false, releases: Boolean = true): MavenDomRepository {
ensureRepositories()
return addRepository(id, name, url, snapshots, releases, { domModel.repositories.repositories }, { domModel.repositories.addRepository() })
}
private fun addRepository(id: String, name: String, url: String, snapshots: Boolean, releases: Boolean, existing: () -> List<MavenDomRepository>, create: () -> MavenDomRepository): MavenDomRepository {
val repository =
existing().firstOrNull { it.id.stringValue == id } ?:
existing().firstOrNull { it.url.stringValue == url } ?:
create()
if (repository.id.isEmpty()) {
repository.id.stringValue = id
}
if (repository.name.isEmpty()) {
repository.name.stringValue = name
}
if (repository.url.isEmpty()) {
repository.url.stringValue = url
}
repository.releases.enabled.value = repository.releases.enabled.value?.let { it || releases } ?: releases
repository.snapshots.enabled.value = repository.snapshots.enabled.value?.let { it || snapshots } ?: snapshots
repository.ensureTagExists()
return repository
}
fun hasPlugin(artifact: MavenId) = domModel.build.plugins.plugins.any { it.matches(artifact) }
fun hasDependency(artifact: MavenId, scope: MavenArtifactScope? = null) =
domModel.dependencies.dependencies.any { it.matches(artifact) && (it.scope.stringValue == scope?.name || scope == null && it.scope.stringValue == "compile") }
fun ensureBuild(): XmlTag = ensureElement(projectElement!!, "build")
fun ensureDependencies(): XmlTag = ensureElement(projectElement!!, "dependencies")
fun ensurePluginRepositories(): XmlTag = ensureElement(projectElement!!, "pluginRepositories")
fun ensureRepositories(): XmlTag = ensureElement(projectElement!!, "repositories")
private fun MavenDomArtifactCoordinates.matches(artifact: MavenId) =
(artifact.groupId == null || groupId.stringValue == artifact.groupId)
&& (artifact.artifactId == null || artifactId.stringValue == artifact.artifactId)
&& (artifact.version == null || version.stringValue == artifact.version)
private fun MavenId.withNoVersion() = MavenId(groupId, artifactId, null)
private fun MavenDomElement.createChildTag(name: String, value: String? = null) = xmlTag.createChildTag(name, value)
private fun XmlTag.createChildTag(name: String, value: String? = null) = createChildTag(name, namespace, value, false)
private fun XmlTag.deleteCascade() {
val oldParent = this.parentTag
delete()
if (oldParent != null && oldParent.subTags.isEmpty()) {
oldParent.deleteCascade()
}
}
private fun ensureElement(projectElement: XmlTag, localName: String): XmlTag {
require(localName in recommendedElementsOrder) { "You can only ensure presence or the elements from the recommendation list" }
return nodesByName.getOrPut(localName) {
val tag = projectElement.createChildTag(localName, projectElement.namespace, null, false)!!
val newTag = insertTagImpl(projectElement, tag)
insertEmptyLines(newTag)
newTag
}
}
private fun insertTagImpl(projectElement: XmlTag, tag: XmlTag): XmlTag {
val middle = recommendedOrderAsList.indexOf(tag.localName)
require(middle != -1) { "You can only insert element from the recommendation list" }
for (idx in middle - 1 downTo 0) {
val reference = nodesByName[recommendedOrderAsList[idx]]
if (reference != null) {
return projectElement.addAfter(tag, reference) as XmlTag
}
}
for (idx in middle + 1..recommendedOrderAsList.lastIndex) {
val reference = nodesByName[recommendedOrderAsList[idx]]
if (reference != null) {
return projectElement.addBefore(tag, reference) as XmlTag
}
}
return projectElement.add(tag) as XmlTag
}
private fun insertEmptyLines(node: XmlTag) {
node.prevSibling?.let { before ->
if (!(before.hasEmptyLine() || before.lastChild?.hasEmptyLine() ?: false)) {
node.parent.addBefore(createEmptyLine(), node)
}
}
node.nextSibling?.let { after ->
if (!(after.hasEmptyLine() || after.firstChild?.hasEmptyLine() ?: false)) {
node.parent.addAfter(createEmptyLine(), node)
}
}
}
private fun PsiElement.hasEmptyLine() = this is PsiWhiteSpace && text.count { it == '\n' } > 1
private fun createEmptyLine(): XmlText {
return XmlElementFactory.getInstance(xmlFile.project).createTagFromText("<s>\n\n</s>").children.first { it is XmlText } as XmlText
}
private fun GenericDomValue<String>.isEmpty() = !exists() || stringValue.isNullOrEmpty()
companion object {
// from maven code convention: https://maven.apache.org/developers/conventions/code.html
val recommendedElementsOrder = """
<modelVersion/>
<parent/>
<groupId/>
<artifactId/>
<version/>
<packaging/>
<name/>
<description/>
<url/>
<inceptionYear/>
<organization/>
<licenses/>
<developers/>
<contributors/>
<mailingLists/>
<prerequisites/>
<modules/>
<scm/>
<issueManagement/>
<ciManagement/>
<distributionManagement/>
<properties/>
<dependencyManagement/>
<dependencies/>
<repositories/>
<pluginRepositories/>
<build/>
<reporting/>
<profiles/>
""".lines()
.map { it.trim().removePrefix("<").removeSuffix("/>").trim() }
.filter { it.isNotEmpty() }
.toCollection(LinkedHashSet())
val recommendedOrderAsList = recommendedElementsOrder.toList()
}
}
@@ -17,6 +17,7 @@
package org.jetbrains.kotlin.idea.framework.ui; package org.jetbrains.kotlin.idea.framework.ui;
import com.google.common.collect.Lists; import com.google.common.collect.Lists;
import com.google.common.io.Closeables;
import com.google.gson.JsonArray; import com.google.gson.JsonArray;
import com.google.gson.JsonElement; import com.google.gson.JsonElement;
import com.google.gson.JsonParser; import com.google.gson.JsonParser;
@@ -209,7 +210,7 @@ public class ConfigureDialogWithModulesAndVersion extends DialogWrapper {
} }
} }
finally { finally {
streamReader.close(); Closeables.closeQuietly(streamReader);
} }
} }
finally { finally {
@@ -8,6 +8,7 @@
<artifactId>maventest</artifactId> <artifactId>maventest</artifactId>
<version>1.0-SNAPSHOT</version> <version>1.0-SNAPSHOT</version>
<build> <build>
<sourceDirectory></sourceDirectory>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.jetbrains.kotlin</groupId> <groupId>org.jetbrains.kotlin</groupId>
@@ -21,10 +22,21 @@
<goal>js</goal> <goal>js</goal>
</goals> </goals>
</execution> </execution>
<execution>
<id>js-test</id>
<phase>test-compile</phase>
<goals>
<goal>test-js</goal>
</goals>
</execution>
</executions> </executions>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
<properties>
<kotlin.version>$VERSION$</kotlin.version>
</properties>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.jetbrains.kotlin</groupId> <groupId>org.jetbrains.kotlin</groupId>
@@ -32,9 +44,6 @@
<version>${kotlin.version}</version> <version>${kotlin.version}</version>
</dependency> </dependency>
</dependencies> </dependencies>
<properties>
<kotlin.version>$VERSION$</kotlin.version>
</properties>
</project> </project>
@@ -7,7 +7,19 @@
<groupId>maventest</groupId> <groupId>maventest</groupId>
<artifactId>maventest</artifactId> <artifactId>maventest</artifactId>
<version>1.0-SNAPSHOT</version> <version>1.0-SNAPSHOT</version>
<properties>
<kotlin.version>$VERSION$</kotlin.version>
</properties>
<dependencies>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-js-library</artifactId>
<version>${kotlin.version}</version>
</dependency>
</dependencies>
<build> <build>
<sourceDirectory></sourceDirectory>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.jetbrains.kotlin</groupId> <groupId>org.jetbrains.kotlin</groupId>
@@ -20,11 +32,6 @@
<goals> <goals>
<goal>js</goal> <goal>js</goal>
</goals> </goals>
<configuration>
<sourceDirs>
<source></source>
</sourceDirs>
</configuration>
</execution> </execution>
<execution> <execution>
<id>js-test</id> <id>js-test</id>
@@ -32,24 +39,11 @@
<goals> <goals>
<goal>test-js</goal> <goal>test-js</goal>
</goals> </goals>
<configuration>
<sourceDirs></sourceDirs>
</configuration>
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
<properties>
<kotlin.version>$VERSION$</kotlin.version>
</properties>
<dependencies>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-js-library</artifactId>
<version>${kotlin.version}</version>
</dependency>
</dependencies>
</project> </project>
@@ -7,7 +7,21 @@
<groupId>maventest</groupId> <groupId>maventest</groupId>
<artifactId>maventest</artifactId> <artifactId>maventest</artifactId>
<version>1.0-SNAPSHOT</version> <version>1.0-SNAPSHOT</version>
<properties>
<kotlin.version>$VERSION$</kotlin.version>
</properties>
<dependencies>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-js-library</artifactId>
<version>${kotlin.version}</version>
</dependency>
</dependencies>
<build> <build>
<sourceDirectory></sourceDirectory>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.jetbrains.kotlin</groupId> <groupId>org.jetbrains.kotlin</groupId>
@@ -20,11 +34,6 @@
<goals> <goals>
<goal>js</goal> <goal>js</goal>
</goals> </goals>
<configuration>
<sourceDirs>
<source></source>
</sourceDirs>
</configuration>
</execution> </execution>
<execution> <execution>
<id>js-test</id> <id>js-test</id>
@@ -32,24 +41,11 @@
<goals> <goals>
<goal>test-js</goal> <goal>test-js</goal>
</goals> </goals>
<configuration>
<sourceDirs></sourceDirs>
</configuration>
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
<dependencies>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-js-library</artifactId>
<version>${kotlin.version}</version>
</dependency>
</dependencies>
<properties>
<kotlin.version>$VERSION$</kotlin.version>
</properties>
</project> </project>
@@ -7,39 +7,19 @@
<groupId>maventest</groupId> <groupId>maventest</groupId>
<artifactId>maventest</artifactId> <artifactId>maventest</artifactId>
<version>1.0-SNAPSHOT</version> <version>1.0-SNAPSHOT</version>
<build>
<plugins> <properties>
<plugin> <kotlin.version>$VERSION$</kotlin.version>
<groupId>org.jetbrains.kotlin</groupId> </properties>
<artifactId>kotlin-maven-plugin</artifactId>
<version>${kotlin.version}</version> <dependencies>
<executions> <dependency>
<execution> <groupId>org.jetbrains.kotlin</groupId>
<id>js</id> <artifactId>kotlin-js-library</artifactId>
<phase>compile</phase> <version>${kotlin.version}</version>
<goals> </dependency>
<goal>js</goal> </dependencies>
</goals>
<configuration>
<sourceDirs>
<source></source>
</sourceDirs>
</configuration>
</execution>
<execution>
<id>js-test</id>
<phase>test-compile</phase>
<goals>
<goal>test-js</goal>
</goals>
<configuration>
<sourceDirs></sourceDirs>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<repositories> <repositories>
<repository> <repository>
<releases> <releases>
@@ -53,6 +33,7 @@
<url>http://oss.sonatype.org/content/repositories/snapshots</url> <url>http://oss.sonatype.org/content/repositories/snapshots</url>
</repository> </repository>
</repositories> </repositories>
<pluginRepositories> <pluginRepositories>
<pluginRepository> <pluginRepository>
<releases> <releases>
@@ -66,16 +47,33 @@
<url>http://oss.sonatype.org/content/repositories/snapshots</url> <url>http://oss.sonatype.org/content/repositories/snapshots</url>
</pluginRepository> </pluginRepository>
</pluginRepositories> </pluginRepositories>
<dependencies>
<dependency> <build>
<groupId>org.jetbrains.kotlin</groupId> <sourceDirectory></sourceDirectory>
<artifactId>kotlin-js-library</artifactId> <plugins>
<version>${kotlin.version}</version> <plugin>
</dependency> <groupId>org.jetbrains.kotlin</groupId>
</dependencies> <artifactId>kotlin-maven-plugin</artifactId>
<properties> <version>${kotlin.version}</version>
<kotlin.version>$VERSION$</kotlin.version> <executions>
</properties> <execution>
<id>js</id>
<phase>compile</phase>
<goals>
<goal>js</goal>
</goals>
</execution>
<execution>
<id>js-test</id>
<phase>test-compile</phase>
<goals>
<goal>test-js</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project> </project>
+42
View File
@@ -0,0 +1,42 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>maventest</groupId>
<artifactId>maventest</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<kotlin.version>wrong-kotlin-version</kotlin.version>
</properties>
<dependencies>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib</artifactId>
<version>wrong-version</version>
</dependency>
</dependencies>
<build>
<sourceDirectory>wrong-source-dir</sourceDirectory>
<plugins>
<plugin>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-plugin</artifactId>
<version>wrong-plugin-version</version>
<executions>
<execution>
<id>compile</id>
<phase>compile</phase>
<goals>
<goal>wrong-goal</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
@@ -0,0 +1,62 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>maventest</groupId>
<artifactId>maventest</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<kotlin.version>$VERSION$</kotlin.version>
</properties>
<dependencies>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib</artifactId>
<version>${kotlin.version}</version>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-test-junit</artifactId>
<version>${kotlin.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<sourceDirectory></sourceDirectory>
<plugins>
<plugin>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-plugin</artifactId>
<version>${kotlin.version}</version>
<executions>
<execution>
<id>compile</id>
<phase>compile</phase>
<goals>
<goal>wrong-goal</goal>
<goal>compile</goal>
</goals>
</execution>
<execution>
<id>test-compile</id>
<phase>test-compile</phase>
<goals>
<goal>test-compile</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
@@ -8,6 +8,7 @@
<artifactId>maventest</artifactId> <artifactId>maventest</artifactId>
<version>1.0-SNAPSHOT</version> <version>1.0-SNAPSHOT</version>
<build> <build>
<sourceDirectory></sourceDirectory>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.jetbrains.kotlin</groupId> <groupId>org.jetbrains.kotlin</groupId>
@@ -32,16 +33,29 @@
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
<properties>
<kotlin.version>$VERSION$</kotlin.version>
</properties>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.jetbrains.kotlin</groupId> <groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib</artifactId> <artifactId>kotlin-stdlib</artifactId>
<version>${kotlin.version}</version> <version>${kotlin.version}</version>
</dependency> </dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-test-junit</artifactId>
<version>${kotlin.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies> </dependencies>
<properties>
<kotlin.version>$VERSION$</kotlin.version>
</properties>
</project> </project>
+24 -18
View File
@@ -7,7 +7,31 @@
<groupId>maventest</groupId> <groupId>maventest</groupId>
<artifactId>maventest</artifactId> <artifactId>maventest</artifactId>
<version>1.0-SNAPSHOT</version> <version>1.0-SNAPSHOT</version>
<properties>
<kotlin.version>$VERSION$</kotlin.version>
</properties>
<dependencies>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib</artifactId>
<version>${kotlin.version}</version>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-test-junit</artifactId>
<version>${kotlin.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
<build> <build>
<sourceDirectory></sourceDirectory>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.jetbrains.kotlin</groupId> <groupId>org.jetbrains.kotlin</groupId>
@@ -20,11 +44,6 @@
<goals> <goals>
<goal>compile</goal> <goal>compile</goal>
</goals> </goals>
<configuration>
<sourceDirs>
<source></source>
</sourceDirs>
</configuration>
</execution> </execution>
<execution> <execution>
<id>test-compile</id> <id>test-compile</id>
@@ -32,24 +51,11 @@
<goals> <goals>
<goal>test-compile</goal> <goal>test-compile</goal>
</goals> </goals>
<configuration>
<sourceDirs></sourceDirs>
</configuration>
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
<properties>
<kotlin.version>$VERSION$</kotlin.version>
</properties>
<dependencies>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib</artifactId>
<version>${kotlin.version}</version>
</dependency>
</dependencies>
</project> </project>
+26 -18
View File
@@ -7,7 +7,33 @@
<groupId>maventest</groupId> <groupId>maventest</groupId>
<artifactId>maventest</artifactId> <artifactId>maventest</artifactId>
<version>1.0-SNAPSHOT</version> <version>1.0-SNAPSHOT</version>
<properties>
<kotlin.version>$VERSION$</kotlin.version>
</properties>
<dependencies>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib</artifactId>
<version>${kotlin.version}</version>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-test-junit</artifactId>
<version>${kotlin.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
<build> <build>
<sourceDirectory></sourceDirectory>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.jetbrains.kotlin</groupId> <groupId>org.jetbrains.kotlin</groupId>
@@ -20,11 +46,6 @@
<goals> <goals>
<goal>compile</goal> <goal>compile</goal>
</goals> </goals>
<configuration>
<sourceDirs>
<source></source>
</sourceDirs>
</configuration>
</execution> </execution>
<execution> <execution>
<id>test-compile</id> <id>test-compile</id>
@@ -32,24 +53,11 @@
<goals> <goals>
<goal>test-compile</goal> <goal>test-compile</goal>
</goals> </goals>
<configuration>
<sourceDirs></sourceDirs>
</configuration>
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
<dependencies>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib</artifactId>
<version>${kotlin.version}</version>
</dependency>
</dependencies>
<properties>
<kotlin.version>$VERSION$</kotlin.version>
</properties>
</project> </project>
@@ -7,39 +7,31 @@
<groupId>maventest</groupId> <groupId>maventest</groupId>
<artifactId>maventest</artifactId> <artifactId>maventest</artifactId>
<version>1.0-SNAPSHOT</version> <version>1.0-SNAPSHOT</version>
<build>
<plugins> <properties>
<plugin> <kotlin.version>$VERSION$</kotlin.version>
<groupId>org.jetbrains.kotlin</groupId> </properties>
<artifactId>kotlin-maven-plugin</artifactId>
<version>${kotlin.version}</version> <dependencies>
<executions> <dependency>
<execution> <groupId>org.jetbrains.kotlin</groupId>
<id>compile</id> <artifactId>kotlin-stdlib</artifactId>
<phase>compile</phase> <version>${kotlin.version}</version>
<goals> </dependency>
<goal>compile</goal> <dependency>
</goals> <groupId>org.jetbrains.kotlin</groupId>
<configuration> <artifactId>kotlin-test-junit</artifactId>
<sourceDirs> <version>${kotlin.version}</version>
<source></source> <scope>test</scope>
</sourceDirs> </dependency>
</configuration> <dependency>
</execution> <groupId>junit</groupId>
<execution> <artifactId>junit</artifactId>
<id>test-compile</id> <version>4.12</version>
<phase>test-compile</phase> <scope>test</scope>
<goals> </dependency>
<goal>test-compile</goal> </dependencies>
</goals>
<configuration>
<sourceDirs></sourceDirs>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<repositories> <repositories>
<repository> <repository>
<releases> <releases>
@@ -53,6 +45,7 @@
<url>http://oss.sonatype.org/content/repositories/snapshots</url> <url>http://oss.sonatype.org/content/repositories/snapshots</url>
</repository> </repository>
</repositories> </repositories>
<pluginRepositories> <pluginRepositories>
<pluginRepository> <pluginRepository>
<releases> <releases>
@@ -66,16 +59,33 @@
<url>http://oss.sonatype.org/content/repositories/snapshots</url> <url>http://oss.sonatype.org/content/repositories/snapshots</url>
</pluginRepository> </pluginRepository>
</pluginRepositories> </pluginRepositories>
<dependencies>
<dependency> <build>
<groupId>org.jetbrains.kotlin</groupId> <sourceDirectory></sourceDirectory>
<artifactId>kotlin-stdlib</artifactId> <plugins>
<version>${kotlin.version}</version> <plugin>
</dependency> <groupId>org.jetbrains.kotlin</groupId>
</dependencies> <artifactId>kotlin-maven-plugin</artifactId>
<properties> <version>${kotlin.version}</version>
<kotlin.version>$VERSION$</kotlin.version> <executions>
</properties> <execution>
<id>compile</id>
<phase>compile</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>
<execution>
<id>test-compile</id>
<phase>test-compile</phase>
<goals>
<goal>test-compile</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project> </project>
@@ -76,6 +76,12 @@ public class ConfigureProjectByChangingFileTestGenerated extends AbstractConfigu
KotlinTestUtils.assertAllTestsPresentByMetadata(this.getClass(), new File("idea/testData/configuration/maven"), Pattern.compile("^([^\\.]+)$"), false); KotlinTestUtils.assertAllTestsPresentByMetadata(this.getClass(), new File("idea/testData/configuration/maven"), Pattern.compile("^([^\\.]+)$"), false);
} }
@TestMetadata("fixExisting")
public void testFixExisting() throws Exception {
String fileName = KotlinTestUtils.navigationMetadata("idea/testData/configuration/maven/fixExisting/");
doTestWithMaven(fileName);
}
@TestMetadata("libraryMissed") @TestMetadata("libraryMissed")
public void testLibraryMissed() throws Exception { public void testLibraryMissed() throws Exception {
String fileName = KotlinTestUtils.navigationMetadata("idea/testData/configuration/maven/libraryMissed/"); String fileName = KotlinTestUtils.navigationMetadata("idea/testData/configuration/maven/libraryMissed/");