Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,408 for projectA (0.08 sec)

  1. apache-maven/src/main/appended-resources/META-INF/LICENSE.vm

    #*    *### add dependency info to output
    
    - $directory/${project.artifact.artifactId}-${project.artifact.version}.jar: $project.artifact.toString().replace( ':eclipse-plugin:', ':jar:' )
        Project: $project.name
        #if ( $project.url )Project URL: ${project.url}#end
    
        License: $license.name#if ( $spdx ) ($spdx)#end
    
        License URL: $license.url ($licFile)
    
    #*  *##end
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Tue Jun 04 06:45:16 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. okhttp/build.gradle.kts

      testImplementation(projects.mockwebserver3)
      testImplementation(projects.mockwebserver3Junit4)
      testImplementation(projects.mockwebserver3Junit5)
      testImplementation(projects.mockwebserver)
      testImplementation(projects.loggingInterceptor)
      testImplementation(projects.okhttpBrotli)
      testImplementation(projects.okhttpDnsoverhttps)
      testImplementation(projects.okhttpIdnaMappingTable)
      testImplementation(projects.okhttpSse)
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Thu Jan 04 05:32:07 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java

         */
        @Deprecated
        MavenExecutionRequest setSelectedProjects(List<String> projects);
    
        /**
         * @deprecated Since Maven 4: use {@link #getProjectActivation()}.
         */
        @Deprecated
        List<String> getSelectedProjects();
    
        /**
         * @param projects the projects to exclude
         * @return this MavenExecutionRequest
         * @since 3.2
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  4. compat/maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java

                    .desc("Resume reactor from specified project")
                    .build());
            options.addOption(Option.builder(PROJECT_LIST)
                    .longOpt("projects")
                    .desc(
                            "Comma-delimited list of specified reactor projects to build instead of all projects. A project can be specified by [groupId]:artifactId or by its relative path. Prefixing a project with ! excludes it, and ? marks it as optional")
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/CommonsCliMavenOptions.java

                        .hasArg()
                        .desc("Resume reactor from specified project")
                        .build());
                options.addOption(Option.builder(PROJECT_LIST)
                        .longOpt("projects")
                        .desc(
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 16K bytes
    - Viewed (0)
  6. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingRequest.java

        Path getPomPath();
    
        /**
         * Sets the POM file of the project to build. Note that providing the path to a POM file via this method will make
         * the model builder operate in project mode. This mode is meant for effective models that are employed during the
         * build process of a local project. Hence the effective model will support the notion of a project directory. To
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  7. okhttp-sse/build.gradle.kts

    }
    
    project.applyOsgi(
      "Export-Package: okhttp3.sse",
      "Automatic-Module-Name: okhttp3.sse",
      "Bundle-SymbolicName: com.squareup.okhttp3.sse"
    )
    
    dependencies {
      api(projects.okhttp)
      compileOnly(libs.findbugs.jsr305)
    
      testImplementation(projects.okhttpTestingSupport)
      testImplementation(projects.mockwebserver3)
      testImplementation(projects.mockwebserver3Junit5)
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Thu Jan 04 05:32:07 UTC 2024
    - 754 bytes
    - Viewed (0)
  8. docs/en/docs/virtual-environments.md

    // Create a directory for this project
    $ mkdir awesome-project
    // Enter into that project directory
    $ cd awesome-project
    ```
    
    </div>
    
    ## Create a Virtual Environment
    
    When you start working on a Python project **for the first time**, create a virtual environment **<abbr title="there are other options, this is a simple guideline">inside your project</abbr>**.
    
    /// tip
    
    You only need to do this **once per project**, not every time you work.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sat Aug 24 03:16:23 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  9. okhttp-brotli/build.gradle.kts

      id("binary-compatibility-validator")
    }
    
    project.applyOsgi(
      "Export-Package: okhttp3.brotli",
      "Automatic-Module-Name: okhttp3.brotli",
      "Bundle-SymbolicName: com.squareup.okhttp3.brotli"
    )
    
    dependencies {
      api(projects.okhttp)
      api(libs.brotli.dec)
      compileOnly(libs.findbugs.jsr305)
    
      testImplementation(projects.okhttpTestingSupport)
      testImplementation(libs.conscrypt.openjdk)
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sat Jan 06 05:31:00 UTC 2024
    - 819 bytes
    - Viewed (0)
  10. .github/workflows/issues.yaml

    # @format
    
    name: Issue Workflow
    
    on:
      issues:
        types:
          - opened
    
    jobs:
      add-to-project:
        name: Add issue to project
        runs-on: ubuntu-latest
        steps:
          - uses: actions/add-to-project@v0.5.0
            with:
              project-url: https://github.com/orgs/miniohq/projects/2
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Jan 11 07:02:00 UTC 2024
    - 338 bytes
    - Viewed (0)
Back to top