mirror of
https://github.com/chylex/IntelliJ-AceJump.git
synced 2025-04-30 23:34:08 +02:00
move project settings into build script
This commit is contained in:
parent
6075cdfcb9
commit
273311d16b
2
.gitignore
vendored
2
.gitignore
vendored
@ -2,7 +2,7 @@
|
|||||||
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio
|
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio
|
||||||
|
|
||||||
## Directory-based project format:
|
## Directory-based project format:
|
||||||
.idea/*
|
.idea
|
||||||
*.iml
|
*.iml
|
||||||
|
|
||||||
## Plugin-specific files:
|
## Plugin-specific files:
|
||||||
|
@ -1,22 +0,0 @@
|
|||||||
<component name="ProjectRunConfigurationManager">
|
|
||||||
<configuration default="false" name="runIde" type="GradleRunConfiguration" factoryName="Gradle">
|
|
||||||
<log_file alias="$PROJECT_DIR$/build/idea-sandbox/system/log/idea.log" path="$PROJECT_DIR$/build/idea-sandbox/system/log/idea.log" />
|
|
||||||
<ExternalSystemSettings>
|
|
||||||
<option name="executionName" />
|
|
||||||
<option name="externalProjectPath" value="$PROJECT_DIR$" />
|
|
||||||
<option name="externalSystemIdString" value="GRADLE" />
|
|
||||||
<option name="scriptParameters" value="" />
|
|
||||||
<option name="taskDescriptions">
|
|
||||||
<list />
|
|
||||||
</option>
|
|
||||||
<option name="taskNames">
|
|
||||||
<list>
|
|
||||||
<option value="runIde" />
|
|
||||||
</list>
|
|
||||||
</option>
|
|
||||||
<option name="vmOptions" value="" />
|
|
||||||
</ExternalSystemSettings>
|
|
||||||
<GradleScriptDebugEnabled>true</GradleScriptDebugEnabled>
|
|
||||||
<method v="2" />
|
|
||||||
</configuration>
|
|
||||||
</component>
|
|
@ -14,8 +14,16 @@ tasks {
|
|||||||
}
|
}
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
kotlin("jvm") version "1.3.0-rc-116"
|
idea apply true
|
||||||
|
kotlin("jvm") version "1.3.0-rc-146"
|
||||||
id("org.jetbrains.intellij") version "0.3.11"
|
id("org.jetbrains.intellij") version "0.3.11"
|
||||||
|
id("org.jetbrains.gradle.plugin.idea-ext") version "0.4.2"
|
||||||
|
}
|
||||||
|
|
||||||
|
idea {
|
||||||
|
project {
|
||||||
|
// TODO
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
intellij {
|
intellij {
|
||||||
|
Loading…
Reference in New Issue
Block a user