Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for libDirName (0.14 sec)

  1. platforms/documentation/docs/src/snippets/ear/earCustomized/kotlin/ear/build.gradle.kts

        // The following dependencies will become ear libs and will
        // be placed in a dir configured via the libDirName property
        earlib(group = "log4j", name = "log4j", version = "1.2.15", ext = "jar")
    }
    
    tasks.ear {
        appDirectory = file("src/main/app")  // use application metadata found in this folder
        libDirName = "APP-INF/lib" // put dependent libraries into APP-INF/lib inside the generated EAR
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/ear/earCustomized/groovy/ear/build.gradle

        // The following dependencies will become ear libs and will
        // be placed in a dir configured via the libDirName property
        earlib group: 'log4j', name: 'log4j', version: '1.2.15', ext: 'jar'
    }
    
    tasks.named('ear') {
        appDirectory = file('src/main/app')  // use application metadata found in this folder
        libDirName 'APP-INF/lib' // put dependent libraries into APP-INF/lib inside the generated EAR
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/dsl/org.gradle.plugins.ear.EarPluginConvention.xml

                </thead>
                <tr>
                    <td>appDirName</td>
                    <td><literal>'src/main/application'</literal></td>
                </tr>
                <tr>
                    <td>libDirName</td>
                    <td><literal>'lib'</literal></td>
                </tr>
                <tr>
                    <td>deploymentDescriptor</td>
                    <td>A deployment descriptor initialized with sensible defaults</td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/dsl/org.gradle.plugins.ear.Ear.xml

                </thead>
                <tr>
                    <td>source</td>
                    <td><literal>[project.appDir]</literal>, not transitive</td>
                </tr>
                <tr>
                    <td>libDirName</td>
                    <td><literal>'lib'</literal></td>
                </tr>
                <tr>
                    <td>generateDeploymentDescriptor</td>
                    <td><literal>true</literal></td>
                </tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/internal/WtpClasspathAttributeSupport.java

    import java.io.File;
    import java.util.Collections;
    import java.util.LinkedHashSet;
    import java.util.Map;
    import java.util.Set;
    
    public class WtpClasspathAttributeSupport {
        private final String libDirName;
        private final boolean isUtilityProject;
        private final Set<File> rootConfigFiles;
        private final Set<File> libConfigFiles;
    
        public WtpClasspathAttributeSupport(Project project, EclipseModel model) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/core-plugins/ear_plugin.adoc

    [[sec:ear_convention_properties]]
    == Convention properties (ear)
    
    `appDirName` — `String`::
    The name of the application source directory, relative to the project directory. _Default value: `src/main/application`_.
    
    `libDirName` — `String`::
    The name of the lib directory inside the generated EAR. _Default value: `lib`_.
    
    `deploymentDescriptor` — link:{javadocPath}/org/gradle/plugins/ear/descriptor/DeploymentDescriptor.html[DeploymentDescriptor]::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5K bytes
    - Viewed (0)
Back to top