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
Consider a multi-project scenario with:
ParentProject
Project_A
Project_B
Where Project_A depends on Project_B using:
dependencies {
some_config project(':Project_B')
}
A release is done from ParentProject
What is desired is that all the sub-projects are released and the release builds of each are used as the dependencies for sibling projects. However the 'unSnapshotVersion' task is not executed on the dependencies (e.g. Project_B) before they are built enough to satisfy the dependencies of sibling projecst (Project_A).
So in the above case Project_A will be released with a build of Project_B that still indicates it is a snapshot.
The text was updated successfully, but these errors were encountered:
Consider a multi-project scenario with:
ParentProject
Project_A
Project_B
Where Project_A depends on Project_B using:
dependencies {
some_config project(':Project_B')
}
A release is done from ParentProject
What is desired is that all the sub-projects are released and the release builds of each are used as the dependencies for sibling projects. However the 'unSnapshotVersion' task is not executed on the dependencies (e.g. Project_B) before they are built enough to satisfy the dependencies of sibling projecst (Project_A).
So in the above case Project_A will be released with a build of Project_B that still indicates it is a snapshot.
The text was updated successfully, but these errors were encountered: