Skip to content

Commit

Permalink
Setup 222 versions for IntelliJ and plugins
Browse files Browse the repository at this point in the history
Fix wrong import
Add try/catch temporary wrapping to obtain stacktrace
Update soot version (commit hash)
Get rid of commented lines, better logging added
  • Loading branch information
Vassiliy-Kudryashov authored and denis-fokin committed Oct 5, 2022
1 parent 1aa3afa commit d5ae1fc
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
2 changes: 0 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,8 @@ kotlin.code.style=official
# IU, IC, PC, PY, WS...
ideType=IC

#pythonCommunityPluginVersion=212.5457.59
pythonCommunityPluginVersion=222.4167.37
#Version numbers: https://plugins.jetbrains.com/plugin/631-python/versions
#pythonUltimatePluginVersion=212.5457.59
pythonUltimatePluginVersion=222.4167.37

junit5Version=5.8.0-RC1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ open class TestCaseGenerator(
engineActions.clear()
return defaultTestFlow(engine, executionTimeEstimator.userTimeout)
} catch (e: Exception) {
e.printStackTrace()
logger.error(e) {"Generate async failed"}
throw e
}
}
Expand Down Expand Up @@ -185,7 +185,7 @@ open class TestCaseGenerator(
}
}
} catch (e: Exception) {
e.printStackTrace()
logger.error(e) {"Error in engine"}
}
}
controller.paused = true
Expand Down
2 changes: 0 additions & 2 deletions utbot-intellij/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ intellij {

val jvmPlugins = listOf(
"java",
// "org.jetbrains.kotlin:212-1.7.10-release-333-IJ5457.46"
"org.jetbrains.kotlin:222-1.7.20-release-201-IJ4167.29"
)

Expand All @@ -42,7 +41,6 @@ intellij {
}
)

// version.set("212.5712.43")
version.set("222.4167.29")
type.set(ideType)
}
Expand Down

0 comments on commit d5ae1fc

Please sign in to comment.