Skip to content
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

Add .sdkmanrc file #32153

Merged
merged 1 commit into from
Mar 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,5 @@ nbactions.xml
nb-configuration.xml
.cache
/lsp/
.sdkmanrc
.envrc
.jekyll-cache
3 changes: 3 additions & 0 deletions .sdkmanrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Enable auto-env through the sdkman_auto_env config
# Add key=value pairs of SDKs to use below
java=11.0.18-tem
2 changes: 2 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -339,6 +339,8 @@
General recap: Anything that is directly set in <configuration> cannot be redefined via '-D...'!
See also: https://github.com/gitflow-incremental-builder/gitflow-incremental-builder/issues/213 -->
<configuration>
<!-- these metadata file can't affect the build -->
<excludePathsMatching>\.sdkmanrc</excludePathsMatching>
<!-- pointless to attempt incremental build if something like mvnw was changed
(and also potentially wrong, given that independent-projects might not be built) -->
<skipIfPathMatches>\.github[/\\].*|\.mvn[/\\].*|mvnw.*</skipIfPathMatches>
Expand Down