如何在Grails项目中为RESTful Client集成hapi-fhir依赖项?

时间:2015-06-05 20:10:53

标签: grails dependency-management

我在Eclipse中使用的Grails项目中使用FhirContext对象时遇到了一些麻烦。我打算使用类似于本页顶部的代码:

http://jamesagnew.github.io/hapi-fhir/doc_rest_client.html

我很确定为了这样做,我需要在项目中添加依赖项,然后导入一些库(我也不确定哪些库是必需的。)

我通过创建maven POM文件,将依赖项粘贴到其中,并在我的BuildConfig.groovy文件中添加“pom true”行,添加了在以下链接中找到的依赖项。

http://jamesagnew.github.io/hapi-fhir/download.html

但是,当我包含fhir库时,我会收到错误,因此我无法使用任何FhirContext对象。

1 个答案:

答案 0 :(得分:1)

在google群组(here)上,建议在BuildConfig.groovy中使用以下内容:

 dependencies {
    // HAPI - FHIR
    compile 'ca.uhn.hapi.fhir:hapi-fhir-base:1.0'
    compile 'ca.uhn.hapi.fhir:hapi-fhir-structures-dstu2:1.0'

    // HAPI - FHIR Support
    compile 'org.jscience:jscience:4.3.1'
    compile 'org.apache.commons:commons-lang3:3.4'
}