Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 73 for Director (0.14 sec)

  1. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertPathWithNormalizedFileSeparators(pom.getValue("build/testSourceDirectory"));
            assertPathWithNormalizedFileSeparators(pom.getValue("build/resources[1]/directory"));
            assertPathWithNormalizedFileSeparators(pom.getValue("build/testResources[1]/directory"));
            assertPathWithNormalizedFileSeparators(pom.getValue("build/filters[1]"));
            assertPathWithNormalizedFileSeparators(pom.getValue("reporting/outputDirectory"));
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 93.2K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

         *
         * @param scopeFilter a filter returning {@code true} for the artifact scopes to accept.
         * @param includeTestDir whether to include the test directory in the classpath elements.
         * @return paths of all artifacts placed on the classpath.
         * @throws DependencyResolutionRequiredException if an artifact file is used, but has not been resolved
         */
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 56.6K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/api/services/model/ModelPathTranslator.java

     *
     */
    public interface ModelPathTranslator {
    
        /**
         * Resolves the well-known paths of the specified model against the given base directory. Paths within plugin
         * configuration are not processed.
         *
         * @param model The model whose paths should be resolved, may be {@code null}.
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 1.6K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/configuration/BasedirBeanConfigurationPathTranslator.java

    /**
     * A path translator that resolves relative paths against a specific base directory.
     *
     */
    public class BasedirBeanConfigurationPathTranslator implements BeanConfigurationPathTranslator {
    
        private final File basedir;
    
        /**
         * Creates a new path translator using the specified base directory.
         *
         * @param basedir The base directory to resolve relative paths against, may be {@code null} to disable path
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.1K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/internal/impl/PathModularizationCache.java

         */
        PathModularizationCache() {
            moduleInfo = new HashMap<>();
            pathTypes = new HashMap<>();
        }
    
        /**
         * Gets module information for the given JAR file or output directory.
         * Module descriptors are read when first requested, then cached.
         */
        PathModularization getModuleInfo(Path path) throws IOException {
            PathModularization info = moduleInfo.get(path);
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 5.2K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/artifact/deployer/ArtifactDeployer.java

    @Deprecated
    public interface ArtifactDeployer {
        String ROLE = ArtifactDeployer.class.getName();
    
        /**
         * Deploy an artifact from a particular directory. The artifact handler is used to determine the
         * filename of the source file.
         *
         * @param basedir the directory where the artifact is stored
         * @param finalName the name of the artifact without extension
         * @param artifact the artifact definition
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 2.6K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/artifact/repository/layout/DefaultRepositoryLayout.java

        public String pathOfRemoteRepositoryMetadata(ArtifactMetadata metadata) {
            return pathOfRepositoryMetadata(metadata, metadata.getRemoteFilename());
        }
    
        private String formatAsDirectory(String directory) {
            return directory.replace(GROUP_SEPARATOR, PATH_SEPARATOR);
        }
    
        @Override
        public String toString() {
            return getId();
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 07:40:37 GMT 2024
    - 3.5K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorTest.java

            build.setDirectory("expected-directory");
            build.setFinalName("expected-finalName");
    
            Model model = new Model();
            model.setBuild(build);
    
            ExpressionEvaluator expressionEvaluator =
                    createExpressionEvaluator(new MavenProject(model), null, new Properties());
    
            Object value = expressionEvaluator.evaluate("${project.build.directory}" + FS + "${project.build.finalName}");
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 05 08:11:33 GMT 2023
    - 18.6K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/project/collector/RequestPomCollectionStrategy.java

    import org.apache.maven.project.MavenProject;
    import org.apache.maven.project.ProjectBuildingException;
    
    /**
     * Strategy to collect projects based on the <code>-f</code> CLI parameter or the pom.xml in the working directory.
     */
    @Named("RequestPomCollectionStrategy")
    @Singleton
    public class RequestPomCollectionStrategy implements ProjectCollectionStrategy {
        private final ProjectsSelector projectsSelector;
    
        @Inject
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 1.9K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/SnapshotArtifactRepositoryMetadata.java

     */
    package org.apache.maven.artifact.repository.metadata;
    
    import org.apache.maven.artifact.Artifact;
    import org.apache.maven.artifact.repository.ArtifactRepository;
    
    /**
     * Metadata for the artifact version directory of the repository.
     *
     * TODO split instantiation (versioning, plugin mappings) from definition
     */
    @Deprecated
    public class SnapshotArtifactRepositoryMetadata extends AbstractRepositoryMetadata {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 2.5K bytes
    - Viewed (0)
Back to top