Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 593 for pluginB (0.07 sec)

  1. src/main/assemblies/common-bin.xml

    			<directory>${project.basedir}/modules</directory>
    			<outputDirectory>fess-${project.version}/es/modules</outputDirectory>
    		</fileSet>
    		<!-- es/plugins -->
    		<fileSet>
    			<directory>${project.basedir}/plugins</directory>
    			<outputDirectory>fess-${project.version}/es/plugins</outputDirectory>
    		</fileSet>
    		<!-- es/data -->
    		<fileSet>
    			<directory>src/main/assemblies/files</directory>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Mar 17 02:29:43 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/Lifecycle.java

            String INSTALL = "install";
            String DEPLOY = "deploy";
            String CLEAN = "clean";
    
            @Nonnull
            String name();
    
            @Nonnull
            List<Plugin> plugins();
    
            @Nonnull
            Collection<Link> links();
    
            /**
             * {@return the list of sub-phases}
             */
            @Nonnull
            List<Phase> phases();
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Tue Sep 24 07:54:24 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/graph/DefaultGraphBuilder.java

                // MNG-1911 / MNG-5572: Building plugins with extensions cannot be part of reactor
                for (Plugin plugin : project.getBuildPlugins()) {
                    if (plugin.isExtensions()) {
                        String pluginKey =
                                ArtifactUtils.key(plugin.getGroupId(), plugin.getArtifactId(), plugin.getVersion());
    
                        if (projectsMap.containsKey(pluginKey)) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  4. compat/maven-compat/src/test/java/org/apache/maven/AbstractCoreMavenComponentTestCase.java

                }
    
                project.getDependencies().add(d);
    
                return this;
            }
    
            // Plugins
            //
            public ProjectBuilder addPlugin(Plugin plugin) {
                project.getBuildPlugins().add(plugin);
                return this;
            }
    
            public MavenProject get() {
                return project;
            }
        }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. impl/maven-core/src/main/java/org/apache/maven/exception/DefaultExceptionHandler.java

    - component not found
    
    Plugins:
    - plugin metadata missing
    - plugin metadata retrieval problem
    - plugin artifact missing
    - plugin artifact retrieval problem
    - plugin dependency metadata missing
    - plugin dependency metadata retrieval problem
    - plugin configuration problem
    - plugin execution failure due to something that is know to possibly go wrong (like compilation failure)
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. compat/maven-plugin-api/src/test/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilderTest.java

        void testBuildReader() throws Exception {
            PluginDescriptor pd = build("/plugin.xml");
    
            assertEquals("org.apache.maven.plugins", pd.getGroupId());
            assertEquals("maven-jar-plugin", pd.getArtifactId());
            assertEquals("2.3-SNAPSHOT", pd.getVersion());
            assertEquals("jar", pd.getGoalPrefix());
            assertEquals("plugin-description", pd.getDescription());
            assertFalse(pd.isIsolatedRealm());
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.31.md

    - Kube-scheduler deprecated all non-csi volumelimit plugins and removed those from defaults plugins. 
      - AzureDiskLimits
      - CinderLimits
      - EBSLimits
      - GCEPDLimits
      
      The NodeVolumeLimits plugin can handle the same functionality as the above plugins since the above volume types are migrated to CSI.
      Please remove those plugins and replace them with the NodeVolumeLimits plugin if you explicitly use those plugins in the scheduler config.
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Wed Oct 23 12:18:32 UTC 2024
    - 315.4K bytes
    - Viewed (0)
  8. docs/iam/access-manager-plugin.go

    Aditya Manthramurthy <******@****.***> 1707412520 -0800
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Feb 08 17:15:20 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. compat/maven-compat/src/main/resources/META-INF/maven/plugin-expressions/settings.paramdoc.xml

          <description>
            <![CDATA[
          Flags the system as offline, to prevent accessing the network to resolve artifacts or execute plugins.
    
          NOTE: It's also possible to switch to offline mode on a per-build basis, using the '-o' command-line option.
        ]]></description>
        </expression>
        <expression>
          <syntax>settings.interactiveMode</syntax>
          <configuration>
            <![CDATA[
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. compat/maven-compat/src/main/java/org/apache/maven/project/DefaultMavenProjectBuilder.java

                List<?> repositories, ProjectBuildingRequest request) throws ProjectBuildingException {
            /*
             * This provides backward-compat with 2.x that allowed plugins like the maven-remote-resources-plugin:1.0 to
             * populate the builder configuration with model repositories instead of artifact repositories.
             */
    
            if (repositories != null) {
                boolean normalized = false;
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top