Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getAltDeployDescriptor (0.24 sec)

  1. platforms/jvm/ear/src/main/java/org/gradle/plugins/ear/descriptor/internal/DefaultEarWebModule.java

            new Node(web, nodeNameFor("web-uri", name), getPath());
            new Node(web, nodeNameFor("context-root", name), contextRoot);
            if (StringUtils.isNotEmpty(getAltDeployDescriptor())) {
                return new Node(parentModule, nodeNameFor("alt-dd", name), getAltDeployDescriptor());
            }
            return null;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 14:55:02 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. platforms/jvm/ear/src/main/java/org/gradle/plugins/ear/descriptor/EarModule.java

         * from the default location and file name required by the respective component specification.
         */
        String getAltDeployDescriptor();
    
        void setAltDeployDescriptor(String altDeployDescriptor);
    
        /**
         * Convert this object to an XML Node (or two nodes if altDeployDescriptor is not null).
         *
         * @param parentModule
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 14:55:02 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. platforms/jvm/ear/src/main/java/org/gradle/plugins/ear/descriptor/internal/DefaultEarModule.java

        @Override
        public String getPath() {
            return path;
        }
    
        @Override
        public void setPath(String path) {
            this.path = path;
        }
    
        @Override
        public String getAltDeployDescriptor() {
            return altDeployDescriptor;
        }
    
        @Override
        public void setAltDeployDescriptor(String altDeployDescriptor) {
            this.altDeployDescriptor = altDeployDescriptor;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 14:55:02 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.plugins.ear.descriptor.DeploymentDescriptor.getVersion()> does not have raw return type assignable to org.gradle.api.provider.Property in (DeploymentDescriptor.java:0)
    Method <org.gradle.plugins.ear.descriptor.EarModule.getAltDeployDescriptor()> does not have raw return type assignable to org.gradle.api.provider.Property in (EarModule.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