Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 99 for TestResources (0.92 sec)

  1. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaMultiModuleIntegrationTest.groovy

    import org.gradle.integtests.fixtures.TestResources
    import org.gradle.plugins.ide.AbstractIdeIntegrationTest
    import org.junit.Rule
    import org.junit.Test
    
    class IdeaMultiModuleIntegrationTest extends AbstractIdeIntegrationTest {
        @Rule
        public final TestResources testResources = new TestResources(testDirectoryProvider)
    
        @Test
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 19K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaModule.java

        private Set<File> resourceDirs = new LinkedHashSet<>();
        /**
         * <strong>This field is {@code @Deprecated}, please use {@link #testResources} instead.</strong>
         */
        @Deprecated
        private Set<File> testResourceDirs = new LinkedHashSet<>();
        private ConfigurableFileCollection testResources;
        private Map<String, Map<String, Collection<Configuration>>> scopes = new LinkedHashMap<>();
        private boolean downloadSources = true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 09:58:16 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  3. testing/smoke-ide-test/build.gradle.kts

    }
    
    plugins.withType<IdeaPlugin> {
        with(model) {
            module {
                testSources.from(smokeIdeTestSourceSet.java.srcDirs, smokeIdeTestSourceSet.groovy.srcDirs)
                testResources.from(smokeIdeTestSourceSet.resources.srcDirs)
            }
        }
    }
    
    tasks.register<SmokeIdeTest>("smokeIdeTest") {
        group = "Verification"
        maxParallelForks = 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 18:13:31 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. maven-api-impl/src/test/remote-repo/org/apache/maven/plugins/maven-resources-plugin/0.1/maven-resources-plugin-0.1.jar

    1.0 Archiver-Version: Plexus Archiver Created-By: Apache Maven Built-By: BEBE Build-Jdk: 1.6.0_07 META-INF/maven/plugin.xml A test plugin to assist testing of Maven core. org.apache.maven.plugins maven-resources-plugin 0.1 resources false true testResources Does nothing. false true false false false true org.apache.maven.plugin.coreit.TestMojo java per-lookup once-per-session resources Does nothing. false true false false false true org.apache.maven.plugin.coreit.ItMojo java per-lookup once-per-session...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest.groovy

    import java.util.regex.Pattern
    
    class EclipseIntegrationTest extends AbstractEclipseIntegrationTest {
        private static String nonAscii = "\\u7777\\u8888\\u9999"
    
        @Rule
        public final TestResources testResources = new TestResources(testDirectoryProvider)
    
        @Test
        @ToBeFixedForConfigurationCache
        void canCreateAndDeleteMetaData() {
            when:
            executer.withTasks("eclipse").run()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  6. 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)
  7. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/integtests/ApplicationIntegrationSpec.groovy

        }
      }
    }
    """
    
            def testResources = file("resources")
            def resourceFile = testResources.file(resourceFileName)
            resourceFile.text = "bar"
            testResources.zipTo(file("libs/bar.jar"))
            resourceFile.text = "foo"
            testResources.zipTo(file("libs/foo.jar"))
            buildFile << """
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 22:15:44 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom

        <resources>
          <resource>
            <directory>src/main/resources</directory>
          </resource>
        </resources>
        <testResources>
          <testResource>
            <directory>src/test/resources</directory>
          </testResource>
        </testResources>
        <directory>target</directory>
        <plugins>
          <plugin>
            <artifactId>maven-release-plugin</artifactId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  9. platforms/jvm/platform-jvm/src/test/groovy/org/gradle/api/internal/jvm/ClassDirectoryBinaryNamingSchemeTest.groovy

            "main" | "compile" | "java"      | "compileJava"
    
            "test" | null      | null        | "test"
            "test" | "compile" | null        | "compileTest"
            "test" | null      | "resources" | "testResources"
            "test" | "compile" | "java"      | "compileTestJava"
        }
    
        def "generates binary name and output directory"() {
            def namer = new ClassDirectoryBinaryNamingScheme(baseName)
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseWtpModelIntegrationTest.groovy

    import org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache
    import org.gradle.integtests.fixtures.TestResources
    import org.junit.Rule
    import org.junit.Test
    import spock.lang.Issue
    
    class EclipseWtpModelIntegrationTest extends AbstractEclipseIntegrationTest {
    
        @Rule
        public final TestResources testResources = new TestResources(testDirectoryProvider)
    
        String component
    
        @Test
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 16.3K bytes
    - Viewed (0)
Back to top