Skip to content

Commit d5ae1fc

Browse files
Vassiliy-Kudryashovdenis-fokin
authored andcommitted
Setup 222 versions for IntelliJ and plugins
Fix wrong import Add try/catch temporary wrapping to obtain stacktrace Update soot version (commit hash) Get rid of commented lines, better logging added
1 parent 1aa3afa commit d5ae1fc

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

gradle.properties

-2
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,8 @@ kotlin.code.style=official
33
# IU, IC, PC, PY, WS...
44
ideType=IC
55

6-
#pythonCommunityPluginVersion=212.5457.59
76
pythonCommunityPluginVersion=222.4167.37
87
#Version numbers: https://plugins.jetbrains.com/plugin/631-python/versions
9-
#pythonUltimatePluginVersion=212.5457.59
108
pythonUltimatePluginVersion=222.4167.37
119

1210
junit5Version=5.8.0-RC1

utbot-framework/src/main/kotlin/org/utbot/framework/plugin/api/TestCaseGenerator.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ open class TestCaseGenerator(
131131
engineActions.clear()
132132
return defaultTestFlow(engine, executionTimeEstimator.userTimeout)
133133
} catch (e: Exception) {
134-
e.printStackTrace()
134+
logger.error(e) {"Generate async failed"}
135135
throw e
136136
}
137137
}
@@ -185,7 +185,7 @@ open class TestCaseGenerator(
185185
}
186186
}
187187
} catch (e: Exception) {
188-
e.printStackTrace()
188+
logger.error(e) {"Error in engine"}
189189
}
190190
}
191191
controller.paused = true

utbot-intellij/build.gradle.kts

-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ intellij {
1616

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

@@ -42,7 +41,6 @@ intellij {
4241
}
4342
)
4443

45-
// version.set("212.5712.43")
4644
version.set("222.4167.29")
4745
type.set(ideType)
4846
}

0 commit comments

Comments
 (0)