使用Gradle

时间:2016-11-22 19:57:26

标签: gradle plugins ceylon

Ceylon 1.3.1刚刚发布,其中一个新项目是与Java项目/库更好地集成。决定将其中一个样本与ceylon-gradle插件(https://github.com/DiegoCoronel/ceylon-spring-boot)一起旋转(https://github.com/renatoathaydes/ceylon-gradle-plugin)。

据我所知,将此项目转换为多项目Gradle构建,需要添加两个具有以下配置的文件。

settings.gradle

include 'gateway'
include 'discovery'
include 'foo'
include 'bar'
include 'foobar'

的build.gradle

plugins {
    id 'com.athaydes.ceylon' version '1.3.0' apply false
}

subprojects { subprj ->
    subprj.apply plugin: 'com.athaydes.ceylon'

    repositories {
        mavenCentral()
    }

    ceylon {
        module = subprj.name
    }
}

不幸的是,构建任何模块会导致错误,例如

$ gradle :gateway:compileCeylon

:gateway:resolveCeylonDependencies
:gateway:createDependenciesPoms
:gateway:createMavenRepo
:gateway:generateOverridesFile
:gateway:createModuleDescriptors
:gateway:importJars
:gateway:compileCeylon
source/gateway/module.ceylon:3: error: Pre-resolving of module failed: Could not find module: antlr/2.7.7
        import ceylon.interop.java "1.3.0";
        ^
ceylon compile: There was 1 error
:gateway:compileCeylon FAILED

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':gateway:compileCeylon'.
> Ceylon process exited with code 1. See output for details.

使用Gradle 3.2发生这种情况

------------------------------------------------------------
Gradle 3.2
------------------------------------------------------------

Build time:   2016-11-14 12:32:59 UTC
Revision:     5d11ba7bc3d79aa2fbe7c30a022766f4532bbe0f

Groovy:       2.4.7
Ant:          Apache Ant(TM) version 1.9.6 compiled on June 29 2015
JVM:          1.8.0_112 (Oracle Corporation 25.112-b16)
OS:           Mac OS X 10.10.5 x86_64

尝试在ceylon配置中设置其他属性,如插件文档中所述,例如

ceylon {
    flatClasspath = false
    importJars = true
    forceImports = true
}

但错误仍然存​​在。任何有关我可能遗失的内容都会非常感激。

1 个答案:

答案 0 :(得分:3)

这是因为锡兰gradle插件does not support yet新功能 - 依赖导出maven依赖...我现在创建了这个问题;),所以要让你的项目工作,你可能需要改变每个子项目/ .ceylon / config都带有以下选项:

[compiler]
source=source
resource=resource

[defaults]
encoding=UTF-8
overrides=build/overrides.xml
flatclasspath=true
fullyexportmavendependencies=false

它将禁用新的ceylon功能并使用ceylon gradle插件功能和生成的overrides.xml文件