我正在尝试将我的虚拟项目移动到maven。以前我用的是野生动物10 jboss-client.jar。现在我想从maven存储库获得相同的功能。自述文件建议使用以下依赖项:
Private Sub btnsearch_Click()
Dim strsearch As string
Dim strText As String
strText = Me.txtidsearchbox.Value
strsearch = "SELECT * from tblstudentinfo where ((ID like ""*" & strText &"*"")"
Me. RecordSource = strsearch
End Sub
Private Sub btnsearchall_Click()
Dim strsearch As String
strsearch = "SELECT * from tblstudentinfo"
Me.RecordSource = strsearch
End Sub
然而,我得到了这个错误。
</dependency>
<dependency>
<groupId>org.wildfly</groupId>
<artifactId>wildfly-ejb-client-bom</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.wildfly</groupId>
<artifactId>wildfly-jms-client-bom</artifactId>
<type>pom</type>
</dependency>
答案 0 :(得分:0)
这些是我遵循的一般步骤,以解决几乎所有来自maven的错误。
另外,请确保类路径中存在jboss-client jar。
答案 1 :(得分:0)
尝试在IDE中或通过命令行更新项目:
<强> IDE:强>
命令行:
mvn clean install
如果这不起作用,请从.m2文件夹和工件文件夹中删除工件。