Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getWebAppDir (0.31 sec)

  1. platforms/jvm/war/src/main/java/org/gradle/api/plugins/WarPluginConvention.java

     */
    @Deprecated
    public abstract class WarPluginConvention {
        /**
         * Returns the web application directory.
         */
        public abstract File getWebAppDir();
    
        /**
         * The name of the web application directory, relative to the project directory.
         */
        public abstract String getWebAppDirName();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 22 17:46:36 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. platforms/jvm/war/src/main/java/org/gradle/api/plugins/internal/DefaultWarPluginConvention.java

        }
    
        @Override
        public TypeOf<?> getPublicType() {
            return typeOf(org.gradle.api.plugins.WarPluginConvention.class);
        }
    
        @Override
        public File getWebAppDir() {
            logDeprecation();
            return project.file(webAppDirName);
        }
    
        @Override
        public String getWebAppDirName() {
            logDeprecation();
            return webAppDirName;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 22 20:00:24 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. platforms/jvm/war/src/main/java/org/gradle/api/plugins/WarPlugin.java

            project.getTasks().withType(War.class).configureEach(task -> {
                task.getWebAppDirectory().convention(project.getLayout().dir(project.provider(() -> DeprecationLogger.whileDisabled(pluginConvention::getWebAppDir))));
                task.from(task.getWebAppDirectory());
                task.dependsOn((Callable<FileCollection>) () -> mainFeature.getSourceSet().getRuntimeClasspath());
                task.classpath((Callable<FileCollection>) () -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 12 16:57:15 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  4. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.api.plugins.WarPluginConvention.getProject()> does not have raw return type assignable to org.gradle.api.provider.Provider in (WarPluginConvention.java:0)
    Method <org.gradle.api.plugins.WarPluginConvention.getWebAppDir()> does not have raw return type assignable to org.gradle.api.provider.Provider in (WarPluginConvention.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
Back to top