Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 84 for Glasser (2.85 sec)

  1. maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4Test.java

        @Test
        public void testValueExtractionWithAPomValueContainingAPath() throws Exception {
            String expected = getTestFile("target/test-classes/target/classes").getCanonicalPath();
    
            Build build = new Build();
            build.setDirectory(expected.substring(0, expected.length() - "/classes".length()));
    
            Model model = new Model();
            model.setBuild(build);
    
            MavenProject project = new MavenProject(model);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 19.2K bytes
    - Viewed (0)
  2. maven-compat/src/main/mdo/paramdoc.mdo

      <defaults>
        <default>
          <key>package</key>
          <value>org.apache.maven.usability.plugin</value>
        </default>
      </defaults>
      <classes>
        <class rootElement="true" xml.tagName="paramdoc">
          <version>1.0.0</version>
          <name>ExpressionDocumentation</name>
          <description>The root of a parameter plugin expression document.</description>
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Aug 21 15:04:07 GMT 2009
    - 5.4K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/classrealm/DefaultClassRealmManager.java

        public static final String API_REALMID = "maven.api";
    
        /**
         * During normal command line build, ClassWorld is loaded by jvm system classloader, which only includes
         * plexus-classworlds jar and possibly javaagent classes, see https://issues.apache.org/jira/browse/MNG-4747.
         * <p>
         * Using ClassWorld to determine plugin/extensions realm parent classloaders gives m2e and integration test harness
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Jan 10 12:53:42 GMT 2024
    - 12.4K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/PluginsMetadataGenerator.java

                                // as it would pull in dependency on:
                                // - maven-plugin-api (for model)
                                // - Plexus Container (for model supporting classes and exceptions)
                                XmlNode root = XmlNodeStaxBuilder.build(is, null);
                                String groupId = root.getChild("groupId").getValue();
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 6.2K bytes
    - Viewed (0)
  5. .github/workflows/maven.yml

            with:
              name: ${{ github.run_number }}-integration-test-artifact-${{ matrix.os }}-${{ matrix.java }}
    Others
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sun Mar 03 21:28:30 GMT 2024
    - 4.5K bytes
    - Viewed (0)
  6. maven-compat/pom.xml

        <artifactId>maven</artifactId>
        <version>4.0.0-beta-1-SNAPSHOT</version>
      </parent>
    
      <artifactId>maven-compat</artifactId>
    
      <name>Maven Compat (deprecated)</name>
      <description>Deprecated Maven2 classes maintained as compatibility layer.</description>
    
      <dependencies>
        <dependency>
          <groupId>org.apache.maven</groupId>
          <artifactId>maven-model</artifactId>
        </dependency>
        <dependency>
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 08:48:58 GMT 2024
    - 5.3K bytes
    - Viewed (0)
  7. maven-compat/src/test/java/org/apache/maven/artifact/resolver/ArtifactResolverTest.java

            assertLocalArtifactPresent(b);
        }
    
        @Override
        protected Artifact createArtifact(String groupId, String artifactId, String version, String type) throws Exception {
            // for the anonymous classes
            return super.createArtifact(groupId, artifactId, version, type);
        }
    
        @Test
        void testTransitiveResolutionWhereAllArtifactsArePresentInTheLocalRepository() throws Exception {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 10.1K bytes
    - Viewed (0)
  8. api/maven-api-plugin/src/main/mdo/plugin.mdo

        <p>An XSD is available at <a href="https://maven.apache.org/xsd/plugin-2.0.0.xsd">https://maven.apache.org/xsd/plugin-2.0.0.xsd</a></p>
      ]]></description>
      <classes>
        <class rootElement="true" xml.tagName="plugin" xdoc.anchorName="plugin">
          <name>PluginDescriptor</name>
          <version>1.0.0+</version>
          <description>Root element of the {@code plugin.xml} file.</description>
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sun Apr 14 17:14:22 GMT 2024
    - 23.6K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-sources.jar

    package org.hamcrest.core; import org.hamcrest.Description; import org.hamcrest.DiagnosingMatcher; import org.hamcrest.Factory; import org.hamcrest.Matcher; /** * Tests whether the value is an instance of a class. * Classes of basic types will be converted to the relevant "Object" classes */ public class IsInstanceOf extends DiagnosingMatcher<Object> { private final Class<?> expectedClass; private final Class<?> matchableClass; /** * Creates a new instance of IsInstanceOf * * @param expectedClass The...
    Archive
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 31.9K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/internal/impl/PathModularizationCache.java

            PathType selected = null;
            boolean classes = false;
            boolean modules = false;
            boolean unknown = false;
            for (PathType type : types) {
                if (filter.test(type)) {
                    if (JavaPathType.CLASSES.equals(type)) {
                        classes = true;
                    } else if (JavaPathType.MODULES.equals(type)) {
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 5.2K bytes
    - Viewed (0)
Back to top