Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for WarPlugin (0.13 sec)

  1. platforms/jvm/ear/src/test/groovy/org/gradle/plugins/ear/EarPluginTest.groovy

            when:
            project.pluginManager.apply(EarPlugin)
    
            then:
            project.getPlugins().hasPlugin(BasePlugin)
            project.convention.plugins.ear instanceof EarPluginConvention
        }
    
        def "creates configurations"() {
            when:
            project.pluginManager.apply(EarPlugin)
    
            and:
            def configuration = project.configurations.getByName(EarPlugin.DEPLOY_CONFIGURATION_NAME)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 14:55:02 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/eclipse/EclipsePlugin.java

        private void applyEclipseWtpPluginOnWebProjects(Project project) {
            Action<Plugin<Project>> action = createActionApplyingEclipseWtpPlugin();
            project.getPlugins().withType(WarPlugin.class, action);
            project.getPlugins().withType(EarPlugin.class, action);
        }
    
        private Action<Plugin<Project>> createActionApplyingEclipseWtpPlugin() {
            return new Action<Plugin<Project>>() {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  3. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPublication.java

         * </ul>
         *
         * Currently 3 types of component are supported: 'components.java' (added by the JavaPlugin), 'components.web' (added by the WarPlugin)
         * and `components.javaPlatform` (added by the JavaPlatformPlugin).
         *
         * For any individual MavenPublication, only a single component can be provided in this way.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  4. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyPublication.java

         * </ul>
         *
         * Currently 2 types of component are supported: 'components.java' (added by the JavaPlugin) and 'components.web' (added by the WarPlugin).
         * For any individual IvyPublication, only a single component can be provided in this way.
         *
         * The following example demonstrates how to publish the 'java' component to a ivy repository.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    will become an error.
    
    [[war_plugin_configure_configurations]]
    ==== `WarPlugin#configureConfiguration(ConfigurationContainer)`
    
    Starting in Gradle 8.1, calling `WarPlugin#configureConfiguration(ConfigurationContainer)` is deprecated. This method was
    intended for internal use and was never intended to be used as part of the public interface.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  6. platforms/jvm/ear/src/main/java/org/gradle/plugins/ear/EarPlugin.java

     * </p>
     *
     * @see <a href="https://docs.gradle.org/current/userguide/ear_plugin.html">EAR plugin reference</a>
     */
    @SuppressWarnings("deprecation")
    public abstract class EarPlugin implements Plugin<Project> {
    
        public static final String EAR_TASK_NAME = "ear";
    
        public static final String DEPLOY_CONFIGURATION_NAME = "deploy";
        public static final String EARLIB_CONFIGURATION_NAME = "earlib";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 12 16:57:15 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

     - The `antlr` configuration created by the `AntlrPlugin`
     - The `zinc` configuration created by the `ScalaBasePlugin`
     - The `providedCompile` and `providedRuntime` configurations created by the `WarPlugin`
    
    These configurations were deprecated for consumption and are now no longer consumable.
    Attempting to consume them will result in an error.
    
    ==== Identical consumable configurations are now an error
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  8. platforms/jvm/ear/src/main/resources/META-INF/gradle-plugins/org.gradle.ear.properties

    implementation-class=org.gradle.plugins.ear.EarPlugin...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 14:55:02 UTC 2023
    - 54 bytes
    - Viewed (0)
  9. platforms/software/build-init/src/main/java/org/gradleinternal/buildinit/plugins/internal/maven/Maven2Gradle.java

                });
                return true;
            }
            return false;
        }
    
        boolean packagesJavadocs(MavenProject project) {
            Plugin jarPlugin = plugin("maven-javadoc-plugin", project);
            return jarPlugin != null && pluginGoal("jar", jarPlugin) != null;
        }
    
        private boolean duplicateDependency(org.apache.maven.model.Dependency dependency, MavenProject project, Set<MavenProject> allProjects) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 14 15:23:34 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  10. platforms/jvm/ear/src/test/groovy/org/gradle/plugins/ear/EarTest.groovy

    class EarTest extends AbstractArchiveTaskTest {
        Ear ear
    
        def setup() {
            ear = createTask(Ear)
            configure(ear)
            // This would normally be set by the EarPlugin
            ear.libDirName = "lib"
        }
    
        @Override
        AbstractArchiveTask getArchiveTask() {
            ear
        }
    
        def "test Ear"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 22 19:58:25 UTC 2023
    - 4.7K bytes
    - Viewed (0)
Back to top