Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for JspC (0.02 sec)

  1. platforms/documentation/docs/src/snippets/dependencyManagement/definingUsingConfigurations-custom/groovy/build.gradle

    }
    
    tasks.register('preCompileJsps') {
        def jasperClasspath = configurations.jasper.asPath
        def projectLayout = layout
        doLast {
            ant.taskdef(classname: 'org.apache.jasper.JspC',
                        name: 'jasper',
                        classpath: jasperClasspath)
            ant.jasper(validateXml: false,
                       uriroot: projectLayout.projectDirectory.file('src/main/webapp').asFile,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 719 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/dependencyManagement/definingUsingConfigurations-custom/kotlin/build.gradle.kts

    }
    
    tasks.register("preCompileJsps") {
        val jasperClasspath = jasper.asPath
        val projectLayout = layout
        doLast {
            ant.withGroovyBuilder {
                "taskdef"("classname" to "org.apache.jasper.JspC",
                          "name" to "jasper",
                          "classpath" to jasperClasspath)
                "jasper"("validateXml" to false,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 791 bytes
    - Viewed (0)
Back to top