Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for webAppDir (0.45 sec)

  1. platforms/documentation/docs/src/docs/dsl/org.gradle.api.plugins.WarPluginConvention.xml

                    </tr>
                </thead>
                <tr>
                    <td>webAppDirName</td>
                    <td><literal>'src/main/webapp'</literal></td>
                </tr>
                <tr>
                    <td>webAppDir</td>
                    <td><literal><replaceable>${project.projectDir}</replaceable>/<replaceable>${project.webAppDirName}</replaceable></literal></td>
                </tr>
            </table>
        </section>
        <section>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 868 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/dsl/org.gradle.api.tasks.bundling.War.xml

                <tr>
                    <td>webXml</td>
                    <td><literal>null</literal></td>
                </tr>
                <tr>
                    <td>source</td>
                    <td><literal>[project.webAppDir]</literal></td>
                </tr>
            </table>
        </section>
        <section>
            <title>Methods</title>
            <table>
                <thead>
                    <tr>
                        <td>Name</td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/eclipse/EclipseWtpPlugin.java

                            File projectDir = project.getProjectDir();
                            File webAppDir = ((War) project.getTasks().getByName("war")).getWebAppDirectory().get().getAsFile();
                            String webAppDirName = RelativePathUtil.relativePath(projectDir, webAppDir);
                            return Lists.newArrayList(new WbResource("/", webAppDirName));
                        }
                    });
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/core-plugins/war_plugin.adoc

    [[sec:war_convention_properties]]
    == Convention properties (deprecated)
    
    `webAppDirName` — `String`::
    _Default value_: `src/main/webapp`
    +
    The name of the web application source directory, relative to the project directory.
    
    `webAppDir` — (read-only) `File`::
    _Default value_: `$webAppDirName`, e.g. _src/main/webapp_
    +
    The path to the web application source directory.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 20:23:16 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  5. platforms/jvm/war/src/integTest/groovy/org/gradle/api/tasks/bundling/WarTaskIntegrationTest.groovy

            setup:
            buildFile << '''
                plugins {
                    id 'war'
                }
    
                tasks.register('custom') {
                    println webAppDir
                }
            '''
    
            expect:
            executer
                .expectDocumentedDeprecationWarning('The org.gradle.api.plugins.WarPluginConvention type has been deprecated. ' +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:20:44 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top