Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 31 for TestResources (0.71 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelPathTranslator.java

                        .scriptSourceDirectory(alignToBaseDirectory(build.getScriptSourceDirectory(), basedir))
                        .resources(map(build.getResources(), r -> alignToBaseDirectory(r, basedir)))
                        .testResources(map(build.getTestResources(), r -> alignToBaseDirectory(r, basedir)))
                        .filters(map(build.getFilters(), s -> alignToBaseDirectory(s, basedir)))
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertEquals(1, ((List<?>) pom.getValue("build/testResources")).size());
            assertPathSuffixEquals("res/test", pom.getValue("build/testResources[1]/directory"));
            assertPathSuffixEquals("test", pom.getValue("build/testResources[1]/targetPath"));
            assertEquals(Boolean.TRUE, pom.getValue("build/testResources[1]/filtering"));
            assertEquals(1, ((List<?>) pom.getValue("build/testResources[1]/includes")).size());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  3. guava-gwt/pom.xml

          </resource>
        </resources>
        <testResources>
          <testResource>
            <directory>test</directory>
          </testResource>
          <testResource>
            <directory>test-super</directory>
          </testResource>
          <testResource>
            <directory>${project.build.directory}/guava-test-gwt-sources</directory>
          </testResource>
        </testResources>
      </build>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 15:00:55 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  4. android/pom.xml

            </includes>
            <targetPath>META-INF</targetPath>
          </resource>
        </resources>
        <testResources>
          <testResource>
            <directory>test</directory>
            <excludes>
              <exclude>**/*.java</exclude>
            </excludes>
          </testResource>
        </testResources>
        <plugins>
          <plugin>
            <artifactId>maven-enforcer-plugin</artifactId>
            <executions>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  5. pom.xml

            </includes>
            <targetPath>META-INF</targetPath>
          </resource>
        </resources>
        <testResources>
          <testResource>
            <directory>test</directory>
            <excludes>
              <exclude>**/*.java</exclude>
            </excludes>
          </testResource>
        </testResources>
        <plugins>
          <plugin>
            <artifactId>maven-enforcer-plugin</artifactId>
            <executions>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/shared-configuration.kt

        plugins.withType<IdeaPlugin> {
            with(model) {
                module {
                    testSources.from(sourceSet.java.srcDirs, sourceSet.the<GroovySourceDirectorySet>().srcDirs)
                    testResources.from(sourceSet.resources.srcDirs)
                }
            }
        }
    }
    
    
    private
    fun Project.bucket(name: String, description: String) = configurations.create(name) {
        isVisible = false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 23:14:25 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. build-logic/performance-testing/src/main/kotlin/gradlebuild/performance/PerformanceTestPlugin.kt

                configure<IdeaModel> {
                    module {
                        testSources.from(performanceTestSourceSet.java.srcDirs, performanceTestSourceSet.the<GroovySourceDirectorySet>().srcDirs)
                        testResources.from(performanceTestSourceSet.resources.srcDirs)
                    }
                }
            }
        }
    
        private
        fun Project.registerBuildService(): Provider<PerformanceTestService> =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  8. maven-model-builder/src/test/java/org/apache/maven/model/validation/DefaultModelValidatorTest.java

            assertEquals(
                    "'build.resources.resource.directory' is missing.",
                    result.getErrors().get(0));
    
            assertEquals(
                    "'build.testResources.testResource.directory' is missing.",
                    result.getErrors().get(1));
        }
    
        @Test
        void testBadPluginDependencyScope() throws Exception {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 13:13:07 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                    validate20RawResources(problems, build.getResources(), "build.resources.resource.", request);
    
                    validate20RawResources(
                            problems, build.getTestResources(), "build.testResources.testResource.", request);
                }
    
                Reporting reporting = m.getReporting();
                if (reporting != null) {
                    for (ReportPlugin p : reporting.getPlugins()) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                    validate20RawResources(problems, build.getResources(), "build.resources.resource.", request);
    
                    validate20RawResources(
                            problems, build.getTestResources(), "build.testResources.testResource.", request);
                }
    
                Reporting reporting = m.getReporting();
                if (reporting != null) {
                    for (ReportPlugin p : reporting.getPlugins()) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
Back to top