Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for nigori (0.34 sec)

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

                    session.getCurrentProject().getRemotePluginRepositories(),
                    session.getRepositorySession());
            assertNotNull(mojoDescriptor);
            assertEquals(goal, mojoDescriptor.getGoal());
            // igorf: plugin realm comes later
            // assertNotNull( mojoDescriptor.getRealm() );
    
            PluginDescriptor pluginDescriptor = mojoDescriptor.getPluginDescriptor();
            assertNotNull(pluginDescriptor);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Apr 15 17:24:20 GMT 2023
    - 13.1K bytes
    - Viewed (0)
  2. maven-core/plugin-manager.txt

     * hook into this and this is the model we need to follow - how many of our REST services do not map
     * directory to a method in the application interface?
     *
     * - research extension points versus plugins
     *
     * from igor: two plugins A and B, both depend on the same library but use different versions, say
     * lib 1.0 and lib 2.0 when debugger hits a breakpoint inside a class from the library, IDE needs to
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jul 18 22:45:13 GMT 2022
    - 12.9K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/plugin/BuildPluginManager.java

    /**
     */
    public interface BuildPluginManager {
        // igorf: Way too many declared exceptions!
        PluginDescriptor loadPlugin(Plugin plugin, List<RemoteRepository> repositories, RepositorySystemSession session)
                throws PluginNotFoundException, PluginResolutionException, PluginDescriptorParsingException,
                        InvalidPluginDescriptorException;
    
        // igorf: Way too many declared exceptions!
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.3K bytes
    - Viewed (0)
Back to top