Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for TestResources (0.16 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/javadoc/JavadocIntegrationTest.groovy

    import org.junit.Rule
    import spock.lang.Issue
    
    import java.nio.file.Paths
    
    class JavadocIntegrationTest extends AbstractIntegrationSpec {
        @Rule
        TestResources testResources = new TestResources(temporaryFolder)
    
        @Issue("GRADLE-1563")
        @Requires(UnitTestPreconditions.Jdk8OrEarlier)
        // JDK 9 requires an @Deprecated annotation that breaks this same test on Java 7 on Windows.
        def handlesTagsAndTaglets() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 06:04:19 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperHttpIntegrationTest.groovy

    class WrapperHttpIntegrationTest extends AbstractWrapperIntegrationSpec {
        @Rule BlockingHttpServer server = new BlockingHttpServer()
        @Rule TestProxyServer proxyServer = new TestProxyServer()
        @Rule TestResources resources = new TestResources(temporaryFolder)
    
        public static final String TEST_DISTRIBUTION_URL = "gradlew/dist"
    
        private String getDefaultBaseUrl() {
            "http://localhost:${server.port}"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 10.7K 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)
Back to top