Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 85 for classes (0.21 sec)

  1. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    expressive. is(Class<T>) - Static method in class org.hamcrest.CoreMatchers Deprecated. use isA(Class type) instead. isA(Class<T>) - Static method in class org.hamcrest.core.Is A shortcut to the frequently used is(instanceOf(SomeClass.class)). isA(Class<T>) - Static method in class org.hamcrest.CoreMatchers A shortcut to the frequently used is(instanceOf(SomeClass.class)). IsAnything<T> - Class in org.hamcrest.core A matcher that always returns true. IsAnything() - Constructor for class org.hamcrest.core.IsAnything...
    Archive
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 236.8K bytes
    - Viewed (0)
  2. maven-core/src/test/resources-project-builder/foo/sub/pom.xml

                    <property name="test.projects.repository" value="repositories/central" />
    
                    <mkdir dir="${basedir}/target/test-classes/${test.projects.repository}/${test.projects.target.directory}/" />
    
                    <jar destfile="${basedir}/target/test-classes/${test.projects.repository}/${test.projects.target.directory}/${test.projects.archetype}.jar" basedir="${basedir}/src/test/archetypes/${test.projects.source.directory}/" />
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Sep 22 08:59:31 GMT 2023
    - 15.6K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/project-dynamism/pom.xml

        <scriptSourceDirectory>${pom.basedir}/src/main/scripts</scriptSourceDirectory>
    
        <outputDirectory>${pom.build.directory}/classes</outputDirectory>
        <testOutputDirectory>${pom.build.directory}/test-classes</testOutputDirectory>
      </build>
    
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Sat Nov 09 12:45:14 GMT 2019
    - 1.1K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/resources/org/apache/maven/model/pom-4.1.0.xml

      </properties>
    
      <build>
        <directory>${project.basedir}/target</directory>
        <outputDirectory>${project.build.directory}/classes</outputDirectory>
        <finalName>${project.artifactId}-${project.version}</finalName>
        <testOutputDirectory>${project.build.directory}/test-classes</testOutputDirectory>
        <sourceDirectory>${project.basedir}/src/main/java</sourceDirectory>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 2.3K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

         *       then the test dependency will be placed on the Java {@code --patch-module} option instead of the
         *       class-path.</li>
         * </ul>
         */
        CLASSES("--class-path"),
    
        /**
         * The path identified by the Java {@code --module-path} option.
         * Used for compilation, execution and Javadoc among others.
         *
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 11.6K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/project-dynamism/pom-relative.xml

        <testSourceDirectory>src/test/java</testSourceDirectory>
        <scriptSourceDirectory>src/main/scripts</scriptSourceDirectory>
    
        <outputDirectory>${pom.build.directory}/classes</outputDirectory>
        <testOutputDirectory>${pom.build.directory}/test-classes</testOutputDirectory>
      </build>
    
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Sat Nov 09 12:45:14 GMT 2019
    - 1.1K bytes
    - Viewed (0)
  7. api/maven-api-model/src/main/java/org/apache/maven/api/model/package-info.java

    // CHECKSTYLE_OFF: RegexpHeader
    /**
     * Maven Immutable POM (Project Object Model) classes, generated from <code>maven.mdo</code> model.
     * The root class is {@link org.apache.maven.api.model.Model}.
     */
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Dec 31 16:32:07 GMT 2022
    - 239 bytes
    - Viewed (0)
  8. maven-core/src/test/remote-repo/org/apache/maven/its/plugins/maven-it-plugin/0.1/maven-it-plugin-0.1.jar

    ${version} org.apache.maven maven-plugin-api jar 2.0 org/apache/maven/plugin/coreit/AMojo.class package org.apache.maven.plugin.coreit; public synchronized class AMojo extends org.apache.maven.plugin.AbstractMojo { private String version; private String[] models; public void AMojo(); public void execute(); } org/apache/maven/plugin/coreit/BMojo.class package org.apache.maven.plugin.coreit; public synchronized class BMojo extends org.apache.maven.plugin.AbstractMojo { private String version; private String[]...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Oct 23 23:48:02 GMT 2009
    - 13.2K bytes
    - Viewed (0)
  9. maven-builder-support/src/test/java/org/apache/maven/building/UrlSourceTest.java

    import static org.junit.jupiter.api.Assertions.assertEquals;
    import static org.junit.jupiter.api.Assertions.assertThrows;
    
    class UrlSourceTest {
    
        @Test
        void testUrlSource() {
            NullPointerException e = assertThrows(
                    NullPointerException.class, () -> new UrlSource(null), "Should fail, since you must specify a url");
            assertEquals("url cannot be null", e.getMessage());
        }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Apr 15 17:24:20 GMT 2023
    - 2K bytes
    - Viewed (0)
  10. api/maven-api-plugin/src/main/mdo/lifecycle.mdo

      <name>Lifecycle</name>
      <description>
        Configuration of custom lifecycle mappings for the plugin, as generally stored in
        {@code META-INF/maven/lifecycle.xml} in a plugin's jar artifact.
      </description>
      <classes>
        <class rootElement="true" xml.tagName="lifecycles" xsd.compositor="sequence">
          <name>LifecycleConfiguration</name>
          <version>1.0.0</version>
          <description>Root element of the {@code lifecycle.xml} file.</description>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 07 21:28:01 GMT 2024
    - 4.2K bytes
    - Viewed (0)
Back to top