Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,951 for bProject (0.06 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/project/DefaultMavenProjectHelper.java

            Artifact artifact = new AttachedArtifact(project.getArtifact(), artifactType, handler);
    
            artifact.setFile(artifactFile);
            artifact.setResolved(true);
    
            attachArtifact(project, artifact);
        }
    
        @Override
        public void attachArtifact(MavenProject project, File artifactFile, String artifactClassifier) {
            Artifact projectArtifact = project.getArtifact();
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  2. impl/maven-cli/src/test/resources/mavenHome/conf/maven-system.properties

    ${includes} = ?"${maven.user.conf}/maven-system.properties", \
                  ?"${maven.project.conf}/maven-system.properties"
    
    #
    # Settings
    #
    # Define the default three levels for settings.
    # The '-is' flag will override the 'maven.installation.settings' property.
    # The '-ps' flag will override the 'maven.project.settings' property.
    # The '-s' flag will override the 'maven.user.settings' property.
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Jul 03 14:18:26 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  3. impl/maven-cli/src/main/java/org/apache/maven/cling/event/ExecutionEventLogger.java

                for (MavenProject project : projects) {
                    int len = lineLength
                            - project.getName().length()
                            - project.getPackaging().length()
                            - 2;
                    logger.info("{}{}[{}]", project.getName(), chars(' ', (len > 0) ? len : 1), project.getPackaging());
                }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Dec 13 15:40:45 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  4. impl/maven-core/src/main/java/org/apache/maven/plugin/PluginManagerException.java

        private final String pluginVersion;
    
        private String goal;
    
        private MavenProject project;
    
        protected PluginManagerException(Plugin plugin, String message, MavenProject project, Throwable cause) {
            super(message, cause);
    
            this.project = project;
            pluginGroupId = plugin.getGroupId();
            pluginArtifactId = plugin.getArtifactId();
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. src/main/assemblies/common-bin.xml

    			<includes>
    				<include>module.xml</include>
    				<include>plugin.xml</include>
    			</includes>
    		</fileSet>
    
    		<!-- lib -->
    		<fileSet>
    			<directory>${project.build.directory}/tomcat-lib</directory>
    			<outputDirectory>fess-${project.version}/lib/classes</outputDirectory>
    		</fileSet>
    		<fileSet>
    			<directory>${project.build.directory}/fess/WEB-INF/classes/org/codelibs/fess/</directory>
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Mar 17 02:29:43 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  6. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleDependencyResolver.java

    import org.apache.maven.lifecycle.LifecycleExecutionException;
    import org.apache.maven.project.DefaultDependencyResolutionRequest;
    import org.apache.maven.project.DependencyResolutionException;
    import org.apache.maven.project.DependencyResolutionResult;
    import org.apache.maven.project.MavenProject;
    import org.apache.maven.project.ProjectDependenciesResolver;
    import org.apache.maven.project.artifact.InvalidDependencyVersionException;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 15.6K bytes
    - Viewed (0)
  7. compat/maven-model-builder/src/test/java/org/apache/maven/model/profile/activation/FileProfileActivatorTest.java

            assertActivation(true, newExistsProfile("${project.rootDirectory}/" + "file.txt"), context);
            assertActivation(false, newMissingProfile("${project.rootDirectory}"), context);
            assertActivation(false, newMissingProfile("${project.rootDirectory}/" + "file.txt"), context);
        }
    
        @Test
        void testIsActiveNoFileWithShortBasedir() {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jan 10 07:09:12 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  8. impl/maven-core/src/main/java/org/apache/maven/project/artifact/ProjectArtifactsCache.java

         * Registers the specified cache record for usage with the given project. Integrators can use the information
         * collected from this method in combination with a custom cache implementation to dispose unused records from the
         * cache.
         *
         * @param project The project that employs the plugin realm, must not be {@code null}.
         * @param record The cache record being used for the project, must not be {@code null}.
         */
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProject.java

            this.session = session;
            this.project = project;
            ClassLoader ttcl = Thread.currentThread().getContextClassLoader();
            try {
                Thread.currentThread().setContextClassLoader(project.getClassRealm());
                this.packaging = session.requirePackaging(project.getPackaging());
            } finally {
                Thread.currentThread().setContextClassLoader(ttcl);
            }
        }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Mar 24 22:23:23 UTC 2025
    - 8.7K bytes
    - Viewed (0)
  10. impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuildingResult.java

         */
        DefaultProjectBuildingResult(
                MavenProject project, List<ModelProblem> problems, DependencyResolutionResult dependencyResolutionResult) {
            this.projectId = (project != null)
                    ? project.getGroupId() + ':' + project.getArtifactId() + ':' + project.getVersion()
                    : "";
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jul 23 10:13:56 UTC 2025
    - 3.4K bytes
    - Viewed (0)
Back to top