Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for TestResource (0.28 sec)

  1. maven-core/src/test/resources-project-builder/foo/sub/pom.xml

          <type>war</type>
          <scope>test</scope>
        </dependency>
      </dependencies>
    
      <build>
        <testResources>
          <testResource>
            <directory>src/test/resources</directory>
            <filtering>true</filtering>
          </testResource>
        </testResources>
        <plugins>
          <plugin>
            <groupId>org.codehaus.modello</groupId>
            <artifactId>modello-maven-plugin</artifactId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 08:59:31 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorIntegrationTest.groovy

                            implementationClass = "com.plugin.WorkerRunningPlugin"
                        }
                    }
                }
            """
            file("included/src/main/resources/TestResource.txt") << "Test Content"
            file("included/src/main/java/com/plugin/WorkerRunningPlugin.java") << """
                package com.plugin;
    
                import org.gradle.api.DefaultTask;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 31K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

        }
    
        public void addResource(Resource resource) {
            getBuild().addResource(resource);
        }
    
        public void addTestResource(Resource testResource) {
            getBuild().addTestResource(testResource);
        }
    
        public void setLicenses(List<License> licenses) {
            getModel().setLicenses(licenses);
        }
    
        public List<License> getLicenses() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  6. 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)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                    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)
  8. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                    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