我正在创建一个使用HtmlFormEntry的OpenMRS模块。我需要HtmlFormEntry和HtmlFormEntryUI api包来构建我的。
也就是说,我在编译时会收到错误package org.openmrs.module.htmlformentry does not exist
和package org.openmrs.module.htmlformentryui does not exist
。
如何定义对htmlformentryui
和htmlformentry
openmrs包以及maven POM.xml
的依赖?
答案 0 :(得分:0)
使用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
:
<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