Search Options

Results per page
Sort
Preferred Languages
Advance

Results 251 - 260 of 2,594 for project1 (0.05 sec)

  1. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/GAVUtilsTest.java

                        <!-- Missing groupId and version -->
                    </project>
                    """;
    
                Document validDoc = Document.of(validPomXml);
                Document invalidDoc = Document.of(invalidPomXml);
    
                Map<Path, Document> pomMap = new HashMap<>();
                pomMap.put(Paths.get("/project/valid.xml"), validDoc);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 18:03:26 UTC 2025
    - 17.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. build-logic/buildquality/build.gradle.kts

    dependencies {
        implementation("gradlebuild:basics")
    
        implementation(projects.cleanup)
        implementation(projects.documentation)
        implementation(projects.integrationTesting)
        implementation(projects.jvm)
        implementation(projects.performanceTesting)
        implementation(projects.profiling)
        implementation(projects.binaryCompatibility)
        implementation(projects.dependencyModules)
    
        implementation("org.codenarc:CodeNarc") {
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Tue Jun 24 13:46:12 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  4. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleBuildDocumentationPlugin.java

    public class GradleBuildDocumentationPlugin implements Plugin<Project> {
        @Override
        public void apply(Project project) {
            ProjectLayout layout = project.getLayout();
            TaskContainer tasks = project.getTasks();
            ObjectFactory objects = project.getObjects();
            ProviderFactory providers = project.getProviders();
    
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Wed Jul 02 12:28:02 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  5. impl/maven-core/src/main/java/org/apache/maven/execution/ProjectExecutionEvent.java

        }
    
        public ProjectExecutionEvent(MavenSession session, MavenProject project, Throwable cause) {
            this(session, project, null, cause);
        }
    
        public ProjectExecutionEvent(
                MavenSession session, MavenProject project, List<MojoExecution> executionPlan, Throwable cause) {
            this.session = session;
            this.project = project;
            this.executionPlan = executionPlan;
            this.cause = cause;
        }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. impl/maven-core/src/main/java/org/apache/maven/project/DuplicateArtifactAttachmentException.java

        private final MavenProject project;
    
        public DuplicateArtifactAttachmentException(MavenProject project, Artifact artifact) {
            super(constructMessage(project, artifact));
            this.project = project;
            this.artifact = artifact;
        }
    
        private static String constructMessage(MavenProject project, Artifact artifact) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. module-tests/build.gradle.kts

      id("org.gradlex.extra-java-module-info") version "1.13.1"
    }
    
    dependencies {
      implementation(projects.okhttp)
      implementation(projects.loggingInterceptor)
    
      testImplementation(projects.okhttp)
      testImplementation(projects.loggingInterceptor)
      testImplementation(projects.mockwebserver3)
      testImplementation(projects.mockwebserver3Junit5)
    
      testImplementation(libs.junit.jupiter.api)
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Sun Sep 21 06:45:42 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  8. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoDescriptorCreator.java

        private void injectPluginDeclarationFromProject(Plugin plugin, MavenProject project) {
            Plugin pluginInPom = findPlugin(plugin, project.getBuildPlugins());
    
            if (pluginInPom == null && project.getPluginManagement() != null) {
                pluginInPom = findPlugin(plugin, project.getPluginManagement().getPlugins());
            }
    
            if (pluginInPom != null) {
                if (plugin.getVersion() == null) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Mar 25 09:45:07 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  9. impl/maven-core/src/main/java/org/apache/maven/project/artifact/ProjectArtifact.java

        private MavenProject project;
    
        public ProjectArtifact(MavenProject project) {
            super(
                    project.getGroupId(),
                    project.getArtifactId(),
                    project.getVersion(),
                    null,
                    "pom",
                    null,
                    new PomArtifactHandler());
            this.project = project;
            setFile(project.getFile());
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  10. okhttp-osgi-tests/build.gradle.kts

    }
    
    dependencies {
      implementation(projects.okhttp)
      implementation(projects.okhttpBrotli)
      implementation(projects.okhttpCoroutines)
      implementation(projects.okhttpDnsoverhttps)
      implementation(projects.loggingInterceptor)
      implementation(projects.okhttpSse)
      implementation(projects.okhttpTls)
      implementation(projects.okhttpUrlconnection)
    
      testImplementation(projects.okhttpTestingSupport)
      testImplementation(libs.junit)
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Fri Aug 01 08:17:18 UTC 2025
    - 2.5K bytes
    - Viewed (0)
Back to top