Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for newImplementation (0.46 sec)

  1. maven-embedder/src/main/java/org/eclipse/sisu/plexus/PlexusXmlBeanConverter.java

         * @return Instance of custom implementation if one was given; otherwise instance of default type
         */
        @SuppressWarnings("unchecked")
        private static <T> T newImplementation(final XmlPullParser parser, final Class<T> defaultClazz) {
            return (T) newImplementation(loadImplementation(parseImplementation(parser), defaultClazz));
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  2. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/DuplicateMojoDescriptorException.java

                String goalPrefix, String goal, String existingImplementation, String newImplementation) {
            super("Goal: " + goal + " already exists in the plugin descriptor for prefix: " + goalPrefix
                    + System.lineSeparator() + "Existing implementation is: " + existingImplementation
                    + System.lineSeparator() + "Conflicting implementation is: " + newImplementation);
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 1.4K bytes
    - Viewed (0)
Back to top