我在以下环境中有一个grails应用程序:
| Grails版本:3.0.9 | Groovy版本:2.4.5 | JVM版本:1.8.0_60
我安装了以下插件:
com.bertramlabs.plugins:资产流水线的gradle:2.5.0 com.bertramlabs.plugins:不太资产管道:2.6.7
在我的本地开发环境中,我的少文件已成功编译,一切都按预期工作。但是,在部署到生产环境时,没有预先编译成css(据我所知)。
我认为本地环境没问题的原因是由于资产管道插件较少,默认为less4j编译器。
我已尝试按照以下文档关注Git repos:
https://github.com/bertramdev/asset-pipeline https://github.com/bertramdev/less-asset-pipeline
如果我运行.gradelw assetCompile,我看到资产管道包含常规的css文件,但是对较少文件的引用被忽略(或失败)。
这是gradle构建文件,我删除了一些条目,以便更容易找到是否缺少任何内容:
buildscript {
ext {
grailsVersion = project.grailsVersion
}
repositories {
mavenLocal()
maven { url "https://repo.grails.org/grails/core" }
// Custom maven repo for the cloudinary plugin
// maven { url "http://dl.bintray.com/infinit/infinit-opensource" }
}
dependencies {
classpath "org.grails:grails-gradle-plugin:$grailsVersion"
classpath 'com.bertramlabs.plugins:asset-pipeline-gradle:2.5.0'
}
}
plugins {
id "io.spring.dependency-management" version "0.5.2.RELEASE"
}
version "0.1"
group "mchq.admin"
apply plugin: "spring-boot"
apply plugin: "war"
apply plugin: "asset-pipeline"
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: "org.grails.grails-web"
apply plugin: "org.grails.grails-gsp"
ext {
grailsVersion = project.grailsVersion
gradleWrapperVersion = project.gradleWrapperVersion
}
assets {
minifyJs = true
minifyCss = true
}
repositories {
mavenLocal()
maven { url "https://repo.grails.org/grails/core" }
maven { url "https://repo.grails.org/grails/repo" }
// Custom maven repo for the cloudinary plugin
maven { url "http://dl.bintray.com/infinit/infinit-opensource" }
maven { url "https://repo1.maven.org/maven2" }
}
dependencyManagement {
imports {
mavenBom "org.grails:grails-bom:$grailsVersion"
}
applyMavenExclusions false
}
dependencies {
compile "org.springframework.boot:spring-boot-starter-logging"
compile "org.springframework.boot:spring-boot-starter-actuator"
compile "org.springframework.boot:spring-boot-autoconfigure"
provided "org.springframework.boot:spring-boot-starter-tomcat"
compile "org.grails:grails-dependencies"
compile "org.grails:grails-web-boot"
compile "org.grails.plugins:hibernate"
compile "org.grails.plugins:cache"
compile "org.hibernate:hibernate-ehcache"
compile "org.grails.plugins:scaffolding"
compile 'org.grails.plugins:spring-security-core:3.0.0.M1'
compile "org.grails.plugins:mail:2.0.0.RC2"
runtime 'mysql:mysql-connector-java:5.1.37'
runtime "org.grails.plugins:asset-pipeline"
compile 'com.bertramlabs.plugins:less-asset-pipeline:2.6.7'
// Note: It is recommended to update to a more robust driver (Chrome, Firefox etc.)
testRuntime 'org.seleniumhq.selenium:selenium-htmlunit-driver:2.44.0'
console "org.grails:grails-console"
}
task wrapper(type: Wrapper) {
gradleVersion = gradleWrapperVersion
}
task stage() {
dependsOn clean, war
}
tasks.stage.doLast() {
delete fileTree(dir: "build/distributions")
delete fileTree(dir: "build/assetCompile")
delete fileTree(dir: "build/distributions")
delete fileTree(dir: "build/libs", exclude: "*.war")
}
war.mustRunAfter clean
奇怪的是,如果我在构建文件的assets {}部分添加任何内容,则所有构建在终端内都会失败并且它会挂起。
任何有关确保预编译较少文件的指示都会受到欢迎!
由于
答案 0 :(得分:4)
这是build.gradle
关于较少插件的看法
buildscript {
dependencies {
classpath 'com.bertramlabs.plugins:less-asset-pipeline:2.6.7'
}
}
dependencies {
runtime 'com.bertramlabs.plugins:less-asset-pipeline:2.6.7'
}
您还应该获得最新版本的资产管道