Skip to content

Commit

Permalink
Local IntelliJ Platform wasn't handled with the `CollectorTransformer…
Browse files Browse the repository at this point in the history
…` due to the missing attributes applied to the `directory` archive.
  • Loading branch information
hsz committed Dec 10, 2024
1 parent 2ff094c commit f50dfa2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@

- Better resolve the plugin dependency path with nested directories in the plugin archive.

### Fixed

- Local IntelliJ Platform wasn't handled with the `CollectorTransformer` due to the missing attributes applied to the `directory` archive.

## [2.2.0] - 2024-12-06

### Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -343,6 +343,10 @@ abstract class IntelliJPlatformBasePlugin : Plugin<Project> {
.attribute(Attributes.extracted, false)
.attribute(Attributes.collected, false)
}
artifactTypes.maybeCreate(Attributes.ArtifactType.DIRECTORY.toString())
.attributes
.attribute(Attributes.extracted, true)
.attribute(Attributes.collected, false)

listOf(
project.configurations[Configurations.External.COMPILE_CLASSPATH],
Expand Down

0 comments on commit f50dfa2

Please sign in to comment.