Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 59 for Chen (0.15 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularization.java

         * If no module is found, or if module information cannot be extracted, then this constructor
         * builds an empty map.
         *
         * <p>If the {@code resolve} parameter value is {@code false}, then some or all map values may
         * be null instead of the actual module name. This option can avoid the cost of reading module
         * descriptors when only the modules existence needs to be verified.</p>
         *
         * <p><b>Algorithm:</b>
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 11.2K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

         *   <li>If {@link #MODULES} path type is also set, then the dependency can be placed either on the
         *       class-path or on the module-path, but only one of those. The choice is up to the plugin,
         *       possibly using heuristic rules (Maven 3 behavior).</li>
         *   <li>If a {@link #patchModule(String)} is also set and the main JAR file is placed on the module-path,
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 11.6K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

         */
        private final Map<Dependency, Path> dependencies;
    
        /**
         * Information about modules in the main output. This field is initially null and is set to a non-null
         * value when the output directories have been set, or when it is too late for setting them.
         */
        private PathModularization outputModules;
    
        /**
         * Creates an initially empty result. Callers should add path elements by calls
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 14.2K bytes
    - Viewed (0)
  4. maven-core/src/site/apt/configuration-management.apt

     could encapsulate everything we need about the project in the POM including
     plugin parameters and anything else.
    
     We once had a document that Vincent and I agreed upon and I was about to
     implement it and then I disappeared for 8 months so it never came to pass.
    
     So I guess it's important to figure out what people are using properties
     files for and see if we can't incorporate it all into the POM. Or if we do
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 18 00:24:53 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  5. maven-api-impl/src/test/java/org/apache/maven/internal/impl/DefaultSettingsBuilderFactoryTest.java

                            e -> e.getKey().toString(), e -> e.getValue().toString()));
            //        lenient().when(session.getSystemProperties()).thenReturn(map);
            //        lenient().when(session.getUserProperties()).thenReturn(Collections.emptyMap());
    
            Mockito.lenient()
                    .when(session.getService(SettingsXmlFactory.class))
                    .thenReturn(new DefaultSettingsXmlFactory());
        }
    
        @Test
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 2.9K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/lifecycle/DefaultLifecyclesTest.java

    import static org.hamcrest.Matchers.arrayWithSize;
    import static org.hamcrest.Matchers.hasSize;
    import static org.hamcrest.Matchers.is;
    import static org.mockito.Mockito.mock;
    import static org.mockito.Mockito.when;
    
    /**
     */
    @PlexusTest
    class DefaultLifecyclesTest {
        @Inject
        private DefaultLifecycles defaultLifeCycles;
    
        @Test
        void testDefaultLifecycles() {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 4.3K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/api/services/model/ModelBuildingListener.java

     * under the License.
     */
    package org.apache.maven.api.services.model;
    
    /**
     * Defines events that the model builder fires during construction of the effective model. When a listener encounters
     * errors while processing the event, it can report these problems via {@link ModelBuildingEvent#problems()}.
     */
    public interface ModelBuildingListener {
    
        /**
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 1.4K bytes
    - Viewed (0)
  8. api/maven-api-spi/src/main/java/org/apache/maven/api/spi/ModelParser.java

    import org.apache.maven.api.services.Source;
    
    /**
     * The {@code ModelParser} interface is used to locate and read {@link Model}s from the file system.
     * This allows plugging in additional syntaxes for the main model read by Maven when building a project.
     *
     * @since 4.0.0
     */
    @Experimental
    @Consumer
    public interface ModelParser extends SpiService {
    
        /**
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 3.1K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/RelocatedArtifact.java

        public String getVersion() {
            if (version != null) {
                return version;
            } else {
                return artifact.getVersion();
            }
        }
    
        // Revise these three methods when MRESOLVER-233 is delivered
        @Override
        public Artifact setVersion(String version) {
            String current = getVersion();
            if (current.equals(version) || (version == null && current.isEmpty())) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 5K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/project/ReactorModelPool.java

    import java.util.concurrent.ConcurrentHashMap;
    
    import org.apache.maven.api.model.Model;
    
    /**
     * Holds all Models that are known to the reactor. This allows the project builder to resolve imported Models from the
     * reactor when building another project's effective model.
     *
     */
    class ReactorModelPool {
        private final Map<GAKey, Set<Model>> modelsByGa = new ConcurrentHashMap<>();
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 4K bytes
    - Viewed (0)
Back to top