1
0
mirror of https://github.com/chylex/Advent-of-Code.git synced 2025-04-09 10:15:46 +02:00

Update Kotlin and CLion project

This commit is contained in:
chylex 2021-12-08 18:22:47 +01:00
parent d6aa3ac901
commit 1bb78b050a
Signed by: chylex
GPG Key ID: 4DE42C8F19A80548
3 changed files with 29 additions and 2 deletions

1
.gitignore vendored
View File

@ -9,6 +9,5 @@
/.idea/inspectionProfiles/
/.idea/jarRepositories.xml
/.idea/modules.xml
/.idea/misc.xml
/.idea/vcs.xml
/.idea/*.iml

26
.idea/misc.xml Normal file
View File

@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="CMakeWorkspace" PROJECT_DIR="$PROJECT_DIR$" />
<component name="CidrRootsConfiguration">
<excludeRoots>
<file path="$PROJECT_DIR$/.gradle" />
<file path="$PROJECT_DIR$/build" />
<file path="$PROJECT_DIR$/gradle" />
</excludeRoots>
</component>
<component name="CodeInsightWorkspaceSettings">
<option name="optimizeImportsOnTheFly" value="true" />
</component>
<component name="ComposerSettings">
<execution />
</component>
<component name="ExternalStorageConfigurationManager" enabled="true" />
<component name="JsFlowSettings">
<service-enabled>true</service-enabled>
<exe-path />
<other-services-enabled>true</other-services-enabled>
<auto-save>true</auto-save>
</component>
<component name="PhpProjectSharedConfiguration" php_language_level="7.4" />
<component name="ProjectRootManager" version="2" languageLevel="JDK_17" default="true" project-jdk-name="17" project-jdk-type="JavaSDK" />
</project>

View File

@ -1,5 +1,5 @@
plugins {
kotlin("jvm") version "1.5.10"
kotlin("jvm") version "1.6.0"
idea
}
@ -16,6 +16,8 @@ dependencies {
idea {
module.excludeDirs.addAll(listOf(
file(".gradle"),
file("build"),
file("cmake-build-debug"),
file("gradle")
))