Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 276 for module1 (0.06 sec)

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

                // Create module directory and POM
                Path moduleDir = tempDir.resolve("module1");
                Files.createDirectories(moduleDir);
                Path modulePom = moduleDir.resolve("pom.xml");
                String modulePomContent = PomBuilder.create()
                        .parent("com.example", "parent-project", "1.0.0")
                        .artifactId("module1")
                        .build();
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  2. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/UpgradeResultTest.java

            void shouldHandleMergingWithDifferentPOMSets() {
                Path pom1 = Paths.get("pom.xml");
                Path pom2 = Paths.get("module1/pom.xml");
                Path pom3 = Paths.get("module2/pom.xml");
    
                UpgradeResult result1 = new UpgradeResult(
                        Set.of(pom1, pom2), // processed
                        Set.of(pom1), // modified
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sat Jun 07 06:22:47 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  3. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/ModelUpgradeStrategyTest.java

                        <artifactId>test</artifactId>
                        <version>1.0.0</version>
                        <modules>
                            <module>module1</module>
                            <module>module2</module>
                        </modules>
                    </project>
                    """;
    
                Document document = Document.of(pomXml);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 18:03:26 UTC 2025
    - 38.8K bytes
    - Viewed (0)
  4. impl/maven-core/src/test/java/org/apache/maven/graph/DefaultGraphBuilderTest.java

    class DefaultGraphBuilderTest {
        /*
        The multi-module structure in this project is displayed as follows:
    
        module-parent
        └─── module-independent     (without parent declaration)
             module-a
             module-b               (depends on module-a)
             module-c
             └─── module-c-1
                  module-c-2        (depends on module-b)
             module-d               (packaging is bom)
         */
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Dec 09 20:39:03 UTC 2025
    - 28K bytes
    - Viewed (0)
  5. module.xml

    		<antcall target="remove.jars" />
    	</target>
    
    	<target name="install.module">
    		<get dest="${target.dir}">
    			<url url="${repo.url}/${module.groupId}/${module.name.prefix}${module.name}/${module.version}/${module.name.prefix}${module.name}-${module.zip.version}.zip" />
    		</get>
    		<unzip dest="${modules.dir}/${module.name}" src="${target.dir}/${module.name.prefix}${module.name}-${module.zip.version}.zip">
    			<patternset>
    				<include name="**" />
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Dec 18 09:50:31 UTC 2025
    - 4K bytes
    - Viewed (0)
  6. module-tests/src/test/java/module-info.java

    @SuppressWarnings("module")
    module okhttp3.modules.test {
      requires okhttp3;
      requires okhttp3.logging;
      requires mockwebserver3;
      requires mockwebserver3.junit5;
      requires jdk.crypto.ec;
      requires org.junit.jupiter.api;
      requires okhttp3.modules;
      opens okhttp3.modules.test to org.junit.platform.commons;
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Sun Sep 21 06:22:22 UTC 2025
    - 317 bytes
    - Viewed (0)
  7. module-tests/src/main/java/module-info.java

    @SuppressWarnings("module")
    module okhttp3.modules {
      requires okhttp3;
      requires okhttp3.logging;
      requires jdk.crypto.ec;
      exports okhttp3.modules;
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Sun Sep 21 06:22:22 UTC 2025
    - 156 bytes
    - Viewed (0)
  8. guava/module.json

    {
      "formatVersion": "1.1",
      "component": {
        "group": "${pom.groupId}",
        "module": "${pom.artifactId}",
        "version": "${pom.version}",
        "attributes": {
          "org.gradle.status": "${module.status}"
        }
      },
      "createdBy": {
        "maven": {
          "version": "${maven.version}",
          "buildId": "${maven.build.version}"
        }
      },
      "variants": [
        {
          "name": "${variant.jvmEnvironmentVariantName}ApiElements",
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Sep 29 19:50:42 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/Type.java

        /**
         * Artifact type name for a JAR file that can be placed either on the annotation processor class path
         * or module path. The path (classes or modules) is chosen by the plugin, possibly using heuristic rules.
         */
        String PROCESSOR = "processor";
    
        /**
         * Artifact type name for a JAR file to unconditionally place on the annotation processor class path.
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 6.5K bytes
    - Viewed (0)
  10. okhttp-urlconnection/src/main/java9/module-info.java

    @SuppressWarnings("module")
    module okhttp3.urlconnection {
      requires okhttp3;
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Sun Sep 21 06:22:22 UTC 2025
    - 81 bytes
    - Viewed (0)
Back to top