Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for moduleNotation (0.19 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/ParsedModuleStringNotation.java

        public ParsedModuleStringNotation(String moduleNotation, String artifactType) {
            assignValuesFromModuleNotation(moduleNotation);
            this.artifactType = artifactType;
        }
    
        private void assignValuesFromModuleNotation(String moduleNotation) {
            int count = 0;
            int idx = 0;
            int cur = -1;
            while (++cur < moduleNotation.length()) {
                if (':' == moduleNotation.charAt(cur)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ComponentModuleMetadataDetails.java

         * For information and examples please see {@link org.gradle.api.artifacts.dsl.ComponentMetadataHandler}.
         *
         * @param moduleNotation a String like 'com.google.guava:guava', an instance of {@link org.gradle.api.artifacts.ModuleVersionIdentifier}, null is not permitted
         */
        void replacedBy(Object moduleNotation);
    
        /**
         * Configures a replacement module for this module and provides an explanation for the replacement.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 2.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/DefaultComponentModuleMetadataHandler.java

            this.moduleMetadataContainer = new ComponentModuleMetadataContainer(moduleIdentifierFactory);
        }
    
        @Override
        public void module(Object moduleNotation, Action<? super ComponentModuleMetadataDetails> rule) {
            rule.execute(moduleMetadataContainer.module(moduleNotation));
        }
    
        @Override
        public ModuleReplacementsData getModuleReplacements() {
            return moduleMetadataContainer;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/ComponentModuleMetadataHandler.java

         * </pre>
         *
         * @param moduleNotation an identifier of the module. String "group:name", e.g. 'org.gradle:gradle-core'
         * or an instance of {@link org.gradle.api.artifacts.ModuleIdentifier}
         * @param rule a rule that applies to the components of the specified module
         * @since 2.2
         */
        void module(Object moduleNotation, Action<? super ComponentModuleMetadataDetails> rule);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 10 09:42:35 UTC 2018
    - 2.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/ComponentModuleMetadataContainer.java

            final ModuleIdentifier source = parser.parseNotation(sourceModule);
            return new ComponentModuleMetadataDetails() {
    
                @Override
                public void replacedBy(Object moduleNotation) {
                    replacedBy(moduleNotation, null);
                }
    
                @Override
                public void replacedBy(final Object targetModule, @Nullable String reason) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/DependencyHandler.java

     * Please use component metadata rules instead.</strong>
     *
     * <p>To add a client module to a configuration you can use the notation:</p>
     *
     * <pre>
     * <i>configurationName</i> module(<i>moduleNotation</i>) {
     *     <i>module dependencies</i>
     * }
     * </pre>
     *
     * The module notation is the same as the dependency notations described above, except that the classifier property is
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:16:36 UTC 2024
    - 26.8K bytes
    - Viewed (0)
Back to top