-
-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Maven will upload *any* classified artifact after uploading maven-metadata.xml. We use maven-metadata.xml as a trigger to know when to finalize the deploy, moving the contents to the actual repo and to cloudfiles. Before this change, we essentially ignored any files that came in after the finalization. Now, any files that come in after finalization go straight to the actual repo and to cloudfiles. This means that deployments with classified artifacts is no longer atomic - the primary artifact, pom, and maven-metadata.xml will be consistent, but any classified artifacts won't be part of that atomic unit. This commit also switches us from clj-http-lite to clj-http for testing, since we need cookie support to properly test this change, since we need to control the order of deployment, so can't use aether.
- Loading branch information
Showing
8 changed files
with
165 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<metadata> | ||
<groupId>fake</groupId> | ||
<artifactId>test</artifactId> | ||
<versioning> | ||
<release>0.0.1</release> | ||
<versions> | ||
<version>0.0.1</version> | ||
</versions> | ||
<lastUpdated>20160406222819</lastUpdated> | ||
</versioning> | ||
</metadata> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.