Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for deployToTomcat (0.2 sec)

  1. platforms/documentation/docs/src/snippets/files/deployWarWithCopy/tests/deployWarWithCopy.sample.conf

    executable: gradle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 40 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/files/deployWarWithCopy/groovy/build.gradle

    plugins {
        id 'war'
    }
    
    tasks.register("deployToTomcat", Copy) {
        from war
        into layout.projectDirectory.dir('tomcat/webapps')
        doNotTrackState("Deployment directory contains unreadable files")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 207 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/files/deployWarWithCopy/kotlin/build.gradle.kts

    plugins {
        war
    }
    
    tasks.register<Copy>("deployToTomcat") {
        from(tasks.war)
        into(layout.projectDirectory.dir("tomcat/webapps"))
        doNotTrackState("Deployment directory contains unreadable files")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 210 bytes
    - Viewed (0)
Back to top