您能否帮我找到rs2xml.jar的Dependency标签。我觉得这对我很有帮助。 net.proteanit.sql.DbUtils
答案 0 :(得分:0)
我检查了Maven Central Repository以及rs2xml
JAR文件的MvnRepository,但找不到它。谷歌搜索对应于此依赖关系的POM也是空的。但是,您仍然可以手动将JAR安装到您自己的本地存储库中,然后将其用作任何其他依赖项。
mvn install:install-file -Dfile=C:\rs2xml.jar -DgroupId=net.proteanit.sql
-DartifactId=rs2xml -Dversion=1.0 -Dpackaging=jar
将路径C:\rs2xml.jar
替换为您下载JAR的计算机上的实际位置。要在项目中使用rs2xml
依赖项,请在POM文件中包含以下标记:
<dependency>
<groupId>net.proteanit.sql</groupId>
<artifactId>rs2xml</artifactId>
<version>1.0</version>
</dependency>
答案 1 :(得分:0)
我必须提取包裹: net.proteanit.sql.DbUtils 导入我的项目。
可行!
在尝试使用Sugestion编辑pom.xml之前:
<dependency>
<groupId>net.proteanit.sql</groupId>
<artifactId>rs2xml</artifactId>
<version>1.0</version>
但是不起作用...:(