Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ExceptionRuleSource (0.61 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentMetadataRulesErrorHandlingIntegrationTest.groovy

            def lines = buildFile.readLines().size()
            buildFile << """
                dependencies {
                    components {
                        all(new ExceptionRuleSource())
                    }
                }
    
                class ExceptionRuleSource {
                    def candidates = []
    
                    @org.gradle.model.Mutate
                    void process(ComponentMetadataDetails cmd) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/ComponentSelectionRulesErrorHandlingIntegTest.groovy

                }
    
                def ruleSource = new ExceptionRuleSource()
    
                configurations.all {
                    resolutionStrategy {
                        componentSelection {
                            all ruleSource
                        }
                    }
                }
    
                class ExceptionRuleSource {
                    def candidates = []
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.2K bytes
    - Viewed (0)
Back to top