Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for classifierA (0.38 sec)

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

            // to avoid treating a build POM as a repository (consumer) POM.
            if ("pom".equals(artifact.getExtension())) {
                String classifier = artifact.getClassifier();
                if (classifier == null || classifier.isEmpty()) {
                    Path consumer = getArtifactPath(
                            artifact.getGroupId(), artifact.getArtifactId(), artifact.getBaseVersion(), "consumer", "pom");
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Dec 15 11:20:38 UTC 2025
    - 24.4K bytes
    - Viewed (0)
  2. compat/maven-compat/src/test/java/org/apache/maven/repository/legacy/DefaultUpdateCheckManagerTest.java

            a = artifactFactory.createArtifactWithClassifier("groupId", "a", "0.0.1-SNAPSHOT", "jar", "classifier");
            file = new File(localRepository.getBasedir(), localRepository.pathOf(a));
            a.setFile(file);
    
            assertEquals(
                    "a-0.0.1-SNAPSHOT-classifier.jar.lastUpdated",
                    updateCheckManager.getTouchfile(a).getName());
        }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Dec 16 13:41:14 UTC 2025
    - 9K bytes
    - Viewed (0)
  3. compat/maven-compat/pom.xml

          <artifactId>junit-jupiter-api</artifactId>
          <scope>test</scope>
        </dependency>
    
        <dependency>
          <groupId>com.google.inject</groupId>
          <artifactId>guice</artifactId>
          <classifier>classes</classifier>
          <!-- only for backward compatibility otherwhise would be test-->
          <scope>compile</scope>
        </dependency>
        <dependency>
          <groupId>org.codehaus.plexus</groupId>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Dec 16 13:41:14 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  4. pyproject.toml

    readme = "README.md"
    license = "MIT"
    license-files = ["LICENSE"]
    requires-python = ">=3.9"
    authors = [
        { name = "Sebastián Ramírez", email = "******@****.***" },
    ]
    classifiers = [
        "Intended Audience :: Information Technology",
        "Intended Audience :: System Administrators",
        "Operating System :: OS Independent",
        "Programming Language :: Python :: 3",
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 12:54:56 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  5. docs/en/docs/release-notes.md

    ### Internal
    
    * 🔧 Add `license` and `license-files` to `pyproject.toml`, remove `License` from `classifiers`. PR [#14230](https://github.com/fastapi/fastapi/pull/14230) by [@YuriiMotov](https://github.com/YuriiMotov).
    
    ## 0.120.0
    
    There are no major nor breaking changes in this release. ☕️
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 19:06:15 UTC 2025
    - 586.7K bytes
    - Viewed (0)
Back to top