Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 32 of 32 for testResources (0.16 sec)

  1. api/maven-api-model/src/main/mdo/maven.mdo

              </description>
              <association>
                <type>Resource</type>
                <multiplicity>*</multiplicity>
              </association>
            </field>
            <field>
              <name>testResources</name>
              <version>4.0.0+</version>
              <description>
                This element describes all the classpath resources such as properties
                files associated with a project's unit tests.
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Apr 23 13:29:46 GMT 2024
    - 115.1K bytes
    - Viewed (0)
  2. 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() {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 56.6K bytes
    - Viewed (0)
Back to top