mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-30 18:27:49 +08:00
maven api changes 2024.1 (#1224)
* maven api changes 2024.1 * maven api 2024.1 - fix return type suffix
This commit is contained in:
parent
770b0cc660
commit
9563bf1a61
@ -207,3 +207,21 @@ Method `org.jetbrains.kotlin.backend.common.lower.LocalDeclarationsLoweringKt.ge
|
||||
|
||||
Class `org.jetbrains.kotlin.ir.declarations.IrDeclarationOriginImpl` made final
|
||||
: Create a new `IrDeclarationOrigin` by delegation. See https://github.com/JetBrains/kotlin/blob/a3b55cf758f3a7ceb596f65507c2f61ada5266af/compiler/ir/ir.tree/src/org/jetbrains/kotlin/ir/declarations/IrDeclarationOrigin.kt#L20
|
||||
|
||||
### Maven Plugin 2024.1
|
||||
|
||||
`org.jetbrains.idea.maven.indices.MavenIndex.getUpdateTimestamp()` method removed
|
||||
: Use org.jetbrains.idea.maven.indices.MavenIndexImpl.getUpdateTimestamp() instead. MavenIndex is an obsolete interface now with MavenIndexImpl as the only implementation, consider using MavenGAVIndex to get information about available Maven GAV coordinates, or MavenSearchIndex to search Maven artifacts by content
|
||||
|
||||
`org.jetbrains.idea.maven.indices.MavenIndex.getFailureMessage()` method removed
|
||||
: Use org.jetbrains.idea.maven.indices.MavenIndexImpl.getFailureMessage() instead. MavenIndex is an obsolete interface now with MavenIndexImpl as the only implementation, consider using MavenGAVIndex to get information about available Maven GAV coordinates, or MavenSearchIndex to search Maven artifacts by content
|
||||
|
||||
`org.jetbrains.idea.maven.indices.MavenIndex.getRepositoryPathOrUrl()` method removed
|
||||
: Use org.jetbrains.idea.maven.indices.MavenRepositoryIndex.getRepository().getUrl() instead. Also, MavenRepositoryInfo.getKind() could be used to distinguish between local and remote repo/
|
||||
|
||||
`org.jetbrains.idea.maven.indices.MavenIndicesManager.scheduleUpdateContent(List<MavenIndex>, boolean)` method removed
|
||||
: Use org.jetbrains.idea.maven.indices.searcher.MavenLuceneIndexer.update(repos: List<MavenRepositoryInfo>, explicit: Boolean) to update content for lucene indices. You should not care of GAV indices update.
|
||||
|
||||
`org.jetbrains.idea.maven.indices.MavenIndicesManager.scheduleUpdateIndicesList(Consumer<MavenIndex>)` method removed
|
||||
: Use org.jetbrains.idea.maven.indices.searcher.MavenIndicesManager.scheduleUpdateIndicesList() to update an indices list for a specific project. To get all search indices for specific project use MavenSystemIndicesManager.getClassIndexForRepository, you can get a list of all repositories with MavenIndexUtils.getAllRepositories(project: Project)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user