Skip to content

Commit

Permalink
Update IntelliJ version and remove unused @serializable annotation
Browse files Browse the repository at this point in the history
Update the IntelliJ version to 243.21565.23 in the Utils.kt file. Also, remove the unused @serializable annotation from PackageSearchGradleDeclaredPackage which is no longer needed.
  • Loading branch information
fscarponi committed Nov 5, 2024
1 parent 10e12bc commit f0033b9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/Utils.kt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ fun PluginDependenciesSpecScope.id(plugin: Provider<PluginDependency>) =
id(plugin.get().pluginId)

const val PACKAGE_SEARCH_PLUGIN_ID = "com.jetbrains.packagesearch.intellij-plugin"
const val INTELLIJ_VERSION = "243.20847.40"
const val INTELLIJ_VERSION = "243.21565.23"

fun String.containsAny(toDelete: List<String>) =
toDelete.any { it in this }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ import org.jetbrains.packagesearch.api.v3.ApiMavenPackage
import org.jetbrains.packagesearch.api.v3.ApiMavenRepository
import org.jetbrains.packagesearch.packageversionutils.normalization.NormalizedVersion

@Serializable
@SerialName("gradle-version")
data class PackageSearchGradleDeclaredPackage(
override val id: String,
override val declaredVersion: NormalizedVersion?,
Expand Down

0 comments on commit f0033b9

Please sign in to comment.