Skip to content

Commit

Permalink
Bump versions and fix the bug
Browse files Browse the repository at this point in the history
  • Loading branch information
nbirillo committed Jan 4, 2024
1 parent e8fbf0e commit ee425e5
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 12 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ allprojects {
tasks {
withType<JavaCompile> {
sourceCompatibility = jdkVersion
targetCompatibility = JavaVersion.VERSION_1_8.toString()
targetCompatibility = JavaVersion.VERSION_17.toString()
}
withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
kotlinOptions.jvmTarget = JavaVersion.VERSION_1_8.toString()
kotlinOptions.jvmTarget = JavaVersion.VERSION_17.toString()
}

// withType<Detekt>().configureEach {
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ pluginUntilBuild = 233.*

# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension
platformType = IC
platformVersion = 2023.2.5
platformVersion = 2022.3.3

# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
# Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22
platformPlugins =

# Gradle Releases -> https://github.com/gradle/gradle/releases
gradleVersion = 8.0.2
gradleVersion = 8.5

# Opt-out flag for bundling Kotlin standard library -> https://jb.gg/intellij-platform-kotlin-stdlib
# suppress inspection "UnusedProperty"
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[versions]
kotlin = "1.8.10"
intellij = "1.13.3"
intellij = "1.16.1"
detekt = "1.22.0"
buildconfig = "3.1.0"
jdk = "17"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ object TaskTrackerPlugin {
}
}

fun initPluginFolder() {
private fun initPluginFolder() {
File(MainTaskTrackerConfig.logFilesFolder).mkdirs()
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package org.jetbrains.research.tasktracker.activities

import com.intellij.openapi.diagnostic.Logger
import com.intellij.openapi.project.Project
import com.intellij.openapi.startup.ProjectActivity
//import com.intellij.openapi.startup.ProjectActivity
import com.intellij.openapi.startup.StartupActivity
import org.jetbrains.research.tasktracker.TaskTrackerPlugin
import org.jetbrains.research.tasktracker.config.MainTaskTrackerConfig
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,9 @@ object PropertiesController {
}

private fun createPropertiesFile() {
if (!propertiesFile.exists()) {
defaultConfigRoot.mkdirs()
propertiesFile.createNewFile()
createDefaultPropertiesFile()
}
defaultConfigRoot.mkdirs()
propertiesFile.createNewFile()
createDefaultPropertiesFile()
}

private fun createDefaultPropertiesFile() {
Expand Down

0 comments on commit ee425e5

Please sign in to comment.