Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 2,408 for projectA (0.06 sec)

  1. api/maven-api-xml/src/site/site.xml

    specific language governing permissions and limitations
    under the License.
    -->
    
    <project xmlns="http://maven.apache.org/DECORATION/1.8.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:schemaLocation="http://maven.apache.org/DECORATION/1.8.0 http://maven.apache.org/xsd/decoration-1.8.0.xsd">
    
      <edit>${project.scm.url}</edit>
    
      <body>
        <menu name="Overview">
          <item name="Introduction" href="index.html"/>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Sat Dec 31 16:32:07 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  2. compat/maven-toolchain-model/src/site/site.xml

    specific language governing permissions and limitations
    under the License.
    -->
    
    <project xmlns="http://maven.apache.org/DECORATION/1.8.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:schemaLocation="http://maven.apache.org/DECORATION/1.8.0 http://maven.apache.org/xsd/decoration-1.8.0.xsd">
    
      <edit>${project.scm.url}</edit>
    
      <body>
        <menu name="Overview">
          <item name="Introduction" href="index.html"/>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. compat/maven-model-builder/src/test/resources/poms/validation/raw-model/repository-with-expression.xml

      </parent>
    
      <groupId>org.apache.maven.validation</groupId>
      <artifactId>project</artifactId>
      <version>1.0.0-SNAPSHOT</version>
    
      <properties>
        <x>just/some/path</x>
      </properties>
    
      <repositories>
        <repository>
          <id>repo</id>
          <url>file://${x}/sdk/maven/repo</url>
        </repository>
      </repositories>
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverRequest.java

        }
    
        @Nonnull
        static DependencyResolverRequest build(Session session, RequestType requestType, Project project) {
            return build(session, requestType, project, PathScope.MAIN_RUNTIME);
        }
    
        @Nonnull
        static DependencyResolverRequest build(Session session, RequestType requestType, Project project, PathScope scope) {
            return new DependencyResolverRequestBuilder()
                    .session(session)
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Wed Oct 16 14:15:37 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  5. compat/maven-plugin-api/src/site/site.xml

      specific language governing permissions and limitations
      under the License.
    -->
    
    <project xmlns="http://maven.apache.org/DECORATION/1.8.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:schemaLocation="http://maven.apache.org/DECORATION/1.8.0 http://maven.apache.org/xsd/decoration-1.8.0.xsd">
    
      <edit>${project.scm.url}</edit>
    
      <body>
        <menu name="Overview">
          <item name="Introduction" href="index.html"/>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. guava-bom/pom.xml

            <version>${project.version}</version>
          </dependency>
          <dependency>
            <groupId>com.google.guava</groupId>
            <artifactId>guava-gwt</artifactId>
            <version>${project.version}</version>
          </dependency>
          <dependency>
            <groupId>com.google.guava</groupId>
            <artifactId>guava-testlib</artifactId>
            <version>${project.version}</version>
          </dependency>
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Dec 10 15:48:57 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  7. samples/tlssurvey/build.gradle.kts

    plugins {
      kotlin("jvm")
      application
      id("com.google.devtools.ksp").version(libs.versions.ksp)
    }
    
    application {
      mainClass.set("okhttp3.survey.RunSurveyKt")
    }
    
    dependencies {
      implementation(projects.okhttp)
      implementation(projects.okhttpCoroutines)
      implementation(libs.conscrypt.openjdk)
    
      implementation(libs.retrofit)
      implementation(libs.converter.moshi)
      implementation(libs.squareup.moshi)
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sun Jun 23 17:02:02 UTC 2024
    - 545 bytes
    - Viewed (0)
  8. compat/maven-model-builder/src/test/resources/poms/inheritance/module-path-not-artifactId-expected.xml

      </scm>
      <distributionManagement>
        <site>
          <url>scp://scp.domain.org/base/child/</url>
        </site>
      </distributionManagement>
    
      <properties>
        <project.directory>child</project.directory>
      </properties>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. samples/guide/build.gradle.kts

    plugins {
      kotlin("jvm")
      kotlin("kapt")
    }
    
    dependencies {
      implementation(projects.okhttp)
      implementation(projects.mockwebserver)
      implementation(projects.okhttpTestingSupport)
      implementation(projects.okhttpTls)
      implementation(libs.animalsniffer.annotations)
      implementation(libs.squareup.moshi)
      implementation(libs.squareup.okio.fakefilesystem)
      kapt(libs.squareup.moshi.compiler)
    }
    
    java {
      toolchain {
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Feb 21 19:52:48 UTC 2022
    - 531 bytes
    - Viewed (0)
  10. impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProjectBuilder.java

    import org.apache.maven.project.DefaultProjectBuildingRequest;
    import org.apache.maven.project.ProjectBuildingException;
    import org.apache.maven.project.ProjectBuildingRequest;
    import org.apache.maven.project.ProjectBuildingResult;
    
    @Named
    @Singleton
    public class DefaultProjectBuilder implements ProjectBuilder {
    
        private final org.apache.maven.project.ProjectBuilder builder;
    
        @Inject
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top