Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 148 for basec (0.18 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/profile/PropertyProfileActivator.java

    import org.apache.maven.api.services.ModelProblemCollector;
    import org.apache.maven.api.services.model.ProfileActivationContext;
    import org.apache.maven.api.services.model.ProfileActivator;
    
    /**
     * Determines profile activation based on the existence or value of some execution property.
     *
     * @see ActivationProperty
     */
    @Named("property")
    @Singleton
    public class PropertyProfileActivator implements ProfileActivator {
    
        @Override
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 3.6K bytes
    - Viewed (0)
  2. maven-core/src/site/apt/inheritance.apt

      future. Therefore, we should rename this file from pom.xml in the maven-core
      jarfile to pom-4.0.0.xml (and successive revisions to the base pom made to
      accommodate changes in the model will be named accordingly - 4.0.1, 4.0.2, ...).
    
    Minimum Element-Set for a Project POM
    
      In order to furnish a basic set of information which we need to distinguish one
      project from another, maven requires a minimum set of elements to be specified
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jul 18 17:22:19 GMT 2022
    - 3.5K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/profile/JdkVersionProfileActivator.java

    import org.apache.maven.api.services.ModelProblemCollector;
    import org.apache.maven.api.services.model.ProfileActivationContext;
    import org.apache.maven.api.services.model.ProfileActivator;
    
    /**
     * Determines profile activation based on the version of the current Java runtime.
     *
     * @see Activation#getJdk()
     */
    @Named("jdk-version")
    @Singleton
    public class JdkVersionProfileActivator implements ProfileActivator {
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 6.2K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/projects/basic-resolveDependencies.xml

    <project>
      <modelVersion>4.0.0</modelVersion>
    
      <groupId>test</groupId>
      <artifactId>basic-resolveDependencies.xml</artifactId>
      <version>0.0.1-SNAPSHOT</version>
    
      <dependencies>
        <dependency>
          <groupId>org.apache.maven.its</groupId>
          <artifactId>a</artifactId>
          <version>0.1</version>
        </dependency>
      </dependencies>
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Dec 18 08:04:17 GMT 2018
    - 356 bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/toolchain/DefaultToolchainManagerPrivateTest.java

            ToolchainModel basicToolchainModel = new ToolchainModel();
            basicToolchainModel.setType("basic");
            basicToolchains.add(basicToolchainModel);
            basicToolchains.add(basicToolchainModel);
            groupedToolchains.put("basic", basicToolchains);
    
            List<ToolchainModel> rareToolchains = new ArrayList<>();
            ToolchainModel rareToolchainModel = new ToolchainModel();
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Apr 15 17:24:20 GMT 2023
    - 5.7K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/toolchain/DefaultToolchainManagerTest.java

            toolchainModels.put("basic", Arrays.asList(new ToolchainModel(), new ToolchainModel()));
            toolchainModels.put("rare", Collections.singletonList(new ToolchainModel()));
            executionRequest.setToolchains(toolchainModels);
            when(session.getRequest()).thenReturn(executionRequest);
    
            List<Toolchain> toolchains = toolchainManager.getToolchains(session, "basic", null);
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Apr 16 12:54:16 GMT 2023
    - 5.9K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/BuilderProblem.java

        String getSource();
    
        /**
         * Gets the one-based index of the line containing the problem. The line number should refer to some text file that
         * is given by {@link #getSource()}.
         *
         * @return the one-based index of the line containing the problem or a non-positive value if unknown
         */
        int getLineNumber();
    
        /**
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Mar 23 05:29:39 GMT 2023
    - 3.6K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-16/plexus-container-default-1.0-alpha-16.jar

    ator.ComponentConfigurati; } org/codehaus/plexus/component/configurator/converters/basic/BooleanConverter.class package org.codehaus.plexus.component.configurator.converters.basic; public synchronized class BooleanConverter extends AbstractBasicConvert { public void BooleanConverter(); public boolean canConvert(Class); public Object fromString(String); } org/codehaus/plexus/component/configurator/converters/basic/ByteConverter.class package org.codehaus.plexus.component.configurator.converters.basic;...
    Archive
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Oct 16 20:15:40 GMT 2007
    - 205.7K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/graph/DefaultProjectDependencyGraph.java

        private final List<MavenProject> allProjects;
    
        private final Map<MavenProject, Integer> order;
    
        private final Map<String, MavenProject> projects;
    
        /**
         * Creates a new project dependency graph based on the specified projects.
         *
         * @param projects The projects to create the dependency graph with
         * @throws DuplicateProjectException
         * @throws CycleDetectedException
         */
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Sep 22 06:02:04 GMT 2023
    - 5.8K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-32/plexus-container-default-1.0-alpha-32.jar

    ator.ComponentConfigurati; } org/codehaus/plexus/component/configurator/converters/basic/BooleanConverter.class package org.codehaus.plexus.component.configurator.converters.basic; public synchronized class BooleanConverter extends AbstractBasicConvert { public void BooleanConverter(); public boolean canConvert(Class); public Object fromString(String); } org/codehaus/plexus/component/configurator/converters/basic/ByteConverter.class package org.codehaus.plexus.component.configurator.converters.basic;...
    Archive
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Oct 16 20:15:40 GMT 2007
    - 233.3K bytes
    - Viewed (0)
Back to top