• Grails


    Summary

    • Grails 是 Groovy开发,基于Gradle工具构建。

    Demo

    buildscript {
        repositories {
            maven { url "https://repo.grails.org/grails/core" }
        }
        dependencies {
            classpath "org.grails:grails-gradle-plugin:$grailsVersion"
            classpath "gradle.plugin.com.github.erdi.webdriver-binaries:webdriver-binaries-gradle-plugin:2.0"
            classpath "org.grails.plugins:hibernate5:7.0.0"
            classpath "com.bertramlabs.plugins:asset-pipeline-gradle:3.0.10"
        }
    }
    
    version "0.0.1"
    group "cn.duchaoqun"
    
    apply plugin:"eclipse"
    apply plugin:"idea"
    apply plugin:"war"
    apply plugin:"org.grails.grails-web"
    apply plugin:"com.github.erdi.webdriver-binaries"
    apply plugin:"com.bertramlabs.asset-pipeline"
    apply plugin:"org.grails.grails-gsp"
    
    repositories {
        maven { url "https://repo.grails.org/grails/core" }
    }
    
    configurations {
        developmentOnly
        runtimeClasspath {
            extendsFrom developmentOnly
        }
    }
    
    dependencies {
        developmentOnly("org.springframework.boot:spring-boot-devtools")
        compile "org.springframework.boot:spring-boot-starter-logging"
        compile "org.springframework.boot:spring-boot-autoconfigure"
        compile "org.grails:grails-core"
        compile "org.springframework.boot:spring-boot-starter-actuator"
        compile "org.springframework.boot:spring-boot-starter-tomcat"
        compile "org.grails:grails-web-boot"
        compile "org.grails:grails-logging"
        compile "org.grails:grails-plugin-rest"
        compile "org.grails:grails-plugin-databinding"
        compile "org.grails:grails-plugin-i18n"
        compile "org.grails:grails-plugin-services"
        compile "org.grails:grails-plugin-url-mappings"
        compile "org.grails:grails-plugin-interceptors"
        compile "org.grails.plugins:cache"
        compile "org.grails.plugins:async"
        compile "org.grails.plugins:scaffolding"
        compile "org.grails.plugins:events"
        compile "org.grails.plugins:hibernate5"
        compile "org.hibernate:hibernate-core:5.4.0.Final"
        compile "org.grails.plugins:gsp"
        compileOnly "io.micronaut:micronaut-inject-groovy"
        console "org.grails:grails-console"
        profile "org.grails.profiles:web"
        runtime "org.glassfish.web:el-impl:2.1.2-b03"
        runtime "com.h2database:h2"
        runtime "org.apache.tomcat:tomcat-jdbc"
        runtime "javax.xml.bind:jaxb-api:2.3.0"
        runtime "com.bertramlabs.plugins:asset-pipeline-grails:3.0.10"
        testCompile "org.grails:grails-gorm-testing-support"
        testCompile "org.mockito:mockito-core"
        testCompile "org.grails:grails-web-testing-support"
        testCompile "org.grails.plugins:geb"
        testCompile "org.seleniumhq.selenium:selenium-remote-driver:3.14.0"
        testCompile "org.seleniumhq.selenium:selenium-api:3.14.0"
        testCompile "org.seleniumhq.selenium:selenium-support:3.14.0"
        testRuntime "org.seleniumhq.selenium:selenium-chrome-driver:3.14.0"
        testRuntime "org.seleniumhq.selenium:selenium-firefox-driver:3.14.0"
        // spring plugins
        compile "org.grails.plugins:spring-security-core:4.0.0.RC2"
        // jasper report: 不同版本的 Grails 搭配不同版本的 plugin
        compile 'org.grails.plugins:jasper-reports:3.2.+'
    
        compile "com.lowagie:itext:2.+"
        compile 'com.itextpdf:itext-asian:5.+'
        // database
        runtime 'org.postgresql:postgresql:42.+'
        // 中文分词
        // https://mvnrepository.com/artifact/org.ansj/ansj_seg
        compile group: 'org.ansj', name: 'ansj_seg', version: '5.1.6'
    
        // apache 相关的包
        // https://mvnrepository.com/artifact/org.apache.commons/commons-lang3
        compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.10'
        compile group: 'org.apache.commons', name: 'commons-text', version: '1.8'  // 处理文本相关的包
    }
    
    bootRun {
        ignoreExitValue true
        jvmArgs(
            '-Dspring.output.ansi.enabled=always', 
            '-noverify', 
            '-XX:TieredStopAtLevel=1',
            '-Xmx1024m')
        sourceResources sourceSets.main
        String springProfilesActive = 'spring.profiles.active'
        systemProperty springProfilesActive, System.getProperty(springProfilesActive)
    }
    
    tasks.withType(GroovyCompile) {
        configure(groovyOptions) {
            forkOptions.jvmArgs = ['-Xmx1024m']
        }
    }
    
    webdriverBinaries {
        chromedriver '2.45.0'
        geckodriver '0.24.0'
    }
    
    tasks.withType(Test) {
        systemProperty "geb.env", System.getProperty('geb.env')
        systemProperty "geb.build.reportsDir", reporting.file("geb/integrationTest")
        systemProperty "webdriver.chrome.driver", System.getProperty('webdriver.chrome.driver')
        systemProperty "webdriver.gecko.driver", System.getProperty('webdriver.gecko.driver')
    }
    
    grails {
        // 在Windows中,终端命令过长会有问题,执行 grails run-app 会失败,添加如下配置。
        pathingJar = true
    }
    
    assets {
        minifyJs = true
        minifyCss = true
    }
    
  • 相关阅读:
    Educational Codeforces Round 85 D. Minimum Euler Cycle(模拟/数学/图)
    Educational Codeforces Round 85 C. Circle of Monsters(贪心)
    NOIP 2017 提高组 DAY1 T1小凯的疑惑(二元一次不定方程)
    Educational Codeforces Round 85 B. Middle Class(排序/贪心/水题)
    Educational Codeforces Round 85 A. Level Statistics(水题)
    IOS中的三大事件
    用Quartz 2D画小黄人
    strong、weak、copy、assign 在命名属性时候怎么用
    用代码生成UINavigationController 与UITabBarController相结合的简单QQ框架(部分)
    Attempting to badge the application icon but haven't received permission from the user to badge the application错误解决办法
  • 原文地址:https://www.cnblogs.com/duchaoqun/p/13129592.html
Copyright © 2020-2023  润新知