You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TeamCity allows to get files from artifact archives, by separating the path to archive and the path inside archive with !: path/to/archive.zip!path/inside/archive
Such files can be used as dependencies by tcdeps plugin, however it causes exclamation mark to get in the artifact name, and consequently in the gradle module cache directory name.
This problem can be mitigated in tcdeps plugin, by not producing artifacts with ! in their name.
The proposed solution is to place the path to archive in one of unused ivy tokens, one that is not used by Gradle to build cache directory name, and place that token in the ivy repository pattern, like .../([that_token]!)[artifact](.[ext])
The text was updated successfully, but these errors were encountered:
TeamCity allows to get files from artifact archives, by separating the path to archive and the path inside archive with
!
:path/to/archive.zip!path/inside/archive
Such files can be used as dependencies by tcdeps plugin, however it causes exclamation mark to get in the artifact name, and consequently in the gradle module cache directory name.
IDEA appears to have a problem with the artifacts, containing
!
in their path: https://youtrack.jetbrains.com/issue/IDEA-160951This problem can be mitigated in tcdeps plugin, by not producing artifacts with
!
in their name.The proposed solution is to place the path to archive in one of unused ivy tokens, one that is not used by Gradle to build cache directory name, and place that token in the ivy repository pattern, like
.../([that_token]!)[artifact](.[ext])
The text was updated successfully, but these errors were encountered: