Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for modelEncoding (0.05 seconds)

  1. compat/maven-embedder/src/main/java/org/apache/maven/cli/internal/extension/model/CoreExtensions.java

            this.extensions = extensions;
        } // -- void setExtensions( List )
    
        /**
         * Set the modelEncoding field.
         *
         * @param modelEncoding a modelEncoding object.
         */
        public void setModelEncoding(String modelEncoding) {
            this.modelEncoding = modelEncoding;
        } // -- void setModelEncoding( String )
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Mon Oct 27 13:24:03 GMT 2025
    - 3K bytes
    - Click Count (0)
  2. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptor.java

                        pluginDescriptorV4 = org.apache.maven.api.plugin.descriptor.PluginDescriptor.newBuilder()
                                .namespaceUri(null)
                                .modelEncoding(null)
                                .name(name)
                                .description(description)
                                .groupId(groupId)
                                .artifactId(artifactId)
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Jun 06 14:28:57 GMT 2025
    - 16.2K bytes
    - Click Count (0)
  3. api/maven-api-model/src/main/mdo/maven.mdo

        }
    
        public void setPomPath(java.nio.file.Path pomPath) {
            update( getDelegate().withPomFile(pomPath));
        }
    
        public void setModelEncoding(String modelEncoding) {
            update(getDelegate().with().modelEncoding(modelEncoding).build());
        }
    
        /**
         * Gets the base directory for the corresponding project (if any).
         *
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Tue Feb 17 09:48:21 GMT 2026
    - 133.5K bytes
    - Click Count (0)
Back to Top