将HtmlFormEntry和HtmlFormEntryUI依赖项添加到POM.xml

时间:2017-06-23 20:59:27

标签: maven openmrs

我正在创建一个使用HtmlFormEntry的OpenMRS模块。我需要HtmlFormEntry和HtmlFormEntryUI api包来构建我的。

也就是说,我在编译时会收到错误package org.openmrs.module.htmlformentry does not existpackage org.openmrs.module.htmlformentryui does not exist

如何定义对htmlformentryuihtmlformentry openmrs包以及maven POM.xml的依赖?

1 个答案:

答案 0 :(得分:0)

HtmlFormEntry

使用this reference中的说明可以轻松完成HtmlFormEntry的依赖关系:

   <properties>
      ...
        <htmlformentryModuleVersion>3.1</htmlformentryModuleVersion>
      ...
    </properties>

    <dependencies>
        ....
        <dependency>
            <groupId>org.openmrs.module</groupId>
            <artifactId>htmlformentry-api</artifactId>
            <version>${htmlformentryModuleVersion}</version>
            <scope>provided</scope>
        </dependency>
        ....
    </dependencies>

请注意,我已将版本号更新为3.1。它现在可能已经显着增加。检查https://github.com/openmrs/openmrs-module-htmlformentry/releases以找到您要使用的版本。

HtmlFormEntryUI

基于此我们可以推断HtmlFormEntryUI

   <properties>
      ...
      <htmlformentryuiModuleVersion>1.6.0</htmlformentryuiModuleVersion>
      ...
    </properties>

    <dependencies>
        ....
        <dependency>
            <groupId>org.openmrs.module</groupId>
            <artifactId>htmlformentryui-api</artifactId>
            <version>${htmlformentryuiModuleVersion}</version>
            <scope>provided</scope>
        </dependency>
        ....
    </dependencies>

版本:https://github.com/openmrs/openmrs-module-htmlformentryui/releases