-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#171 updating docker templates to fabric8 #188
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -65,7 +65,7 @@ | |
</dependencyManagement> | ||
|
||
<dependencies> | ||
<!-- START: workaround to get maven build cache invalidation on new SNAPSHOTS of commonly updated plugins: --> | ||
<!-- START: workaround to get maven build cache invalidation on new SNAPSHOTS of commonly updated plugins --> | ||
<dependency> | ||
<groupId>com.boozallen.aissemble</groupId> | ||
<artifactId>artifacts-maven-plugin</artifactId> | ||
|
@@ -84,7 +84,21 @@ | |
<version>${archetypeVersion}</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<!-- END: workaround to get maven build cache invalidation on new SNAPSHOTS of commonly updated plugins --> | ||
<!-- END: workaround to get maven build cache invalidation on new SNAPSHOTS of commonly updated plugins --> | ||
<!-- START: workaround to get maven build cache invalidation on new SNAPSHOTS of plugin dependencies --> | ||
<dependency> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. S: are we sure we need If it is that the build cache isn't picking up dependencies listed within plugins, I might just note that so it's easier to know what it is here in the future. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I believe it is indeed the latter case, because after adding these two dependencies, it resolved the inconsistent behavior with the archetype tests. I will add a comment to contextualize There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Will also make sure the additions are not part of the plugins comment block |
||
<groupId>com.boozallen.aissemble</groupId> | ||
<artifactId>foundation-mda</artifactId> | ||
<version>${archetypeVersion}</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.boozallen.aissemble</groupId> | ||
<artifactId>foundation-upgrade</artifactId> | ||
<version>${archetypeVersion}</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<!-- END: workaround to get maven build cache invalidation on new SNAPSHOTS of plugin dependencies --> | ||
</dependencies> | ||
|
||
<scm> | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks like these bullets should be 1., 2., 3., instead of all 1's
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That is intentional. That way if we insert another point, we don't have to manually renumber. Markdown is smart enough to increment the numbers when the README is rendered
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oo good to know!