-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #38834 from gsmet/more-build-cache-work
More build cache work
- Loading branch information
Showing
20 changed files
with
285 additions
and
466 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
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
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
29 changes: 29 additions & 0 deletions
29
...cts/enforcer-rules/src/main/resources/enforcer-rules/quarkus-banned-dependencies-test.xml
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,29 @@ | ||
<enforcer> | ||
<rules> | ||
<bannedDependencies> | ||
<excludes> | ||
<exclude>io.quarkus:quarkus-test-*</exclude> | ||
<exclude>io.rest-assured:*</exclude> | ||
<exclude>org.assertj:*</exclude> | ||
<exclude>junit:junit</exclude> | ||
</excludes> | ||
<includes> | ||
<include>io.quarkus:quarkus-test-*:*:*:test</include> | ||
<include>io.rest-assured:*:*:*:test</include> | ||
<include>org.assertj:*:*:*:test</include> | ||
<include>junit:junit:*:*:test</include> | ||
</includes> | ||
<message>Found test dependencies with wrong scope:</message> | ||
</bannedDependencies> | ||
<bannedDependencies> | ||
<searchTransitive>false</searchTransitive> | ||
<excludes> | ||
<exclude>org.junit.jupiter:*</exclude> | ||
</excludes> | ||
<includes> | ||
<include>org.junit.jupiter:*:*:*:test</include> | ||
</includes> | ||
<message>Found JUnit 5 dependencies with wrong scope:</message> | ||
</bannedDependencies> | ||
</rules> | ||
</enforcer> |
Oops, something went wrong.