Skip to content

Commit

Permalink
Fix attaching sources to bundled plugins
Browse files Browse the repository at this point in the history
Fixes #337
  • Loading branch information
zolotov committed Nov 30, 2018
1 parent 1d66afe commit 6695ba3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## Next version

- support token-based authentication while publishing plugins [#317](../../issues/317)
- fix attaching sources to bundled plugins [#337](../../issues/337)

## 0.3.12

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class PluginDependencyManager {
repo.artifactPattern("$ideaDependency.classes/plugins/[module]/[artifact].[ext]") // builtin plugins
repo.artifactPattern("$cacheDirectoryPath(/[classifier])/[module]-[revision]/[artifact](.[ext])") // external zip plugins
if (ideaDependency.sources) {
repo.artifactPattern("$ideaDependency.sources/[artifact]-[revision](-[classifier]).[ext]")
repo.artifactPattern("$ideaDependency.sources.parent/[artifact]-$ideaDependency.sources(-[classifier]).[ext]")
}
}
}
Expand Down

0 comments on commit 6695ba3

Please sign in to comment.