我无法让 ucanaccess 工作的 maven 依赖项:net.ucanaccess ucanaccess 2.XX
它似乎不可用?
我无法让 ucanaccess 工作的 maven 依赖项:net.ucanaccess ucanaccess 2.XX
它似乎不可用?
maven Central 似乎目前无法使用 ucanaccess(基于谷歌搜索并找到此线程)。
我建议从sourceforge下载它,提取 jar,然后使用maven 文档中的说明将 jar 安装到本地存储库中:
mvn install:install-file
-Dfile=<path-to-file>
-DgroupId=<group-id>
-DartifactId=<artifact-id>
-Dversion=<version>
-Dpackaging=<packaging>
-DgeneratePom=true
Where: <path-to-file> the path to the file to load
<group-id> the group that the file should be registered under
<artifact-id> the artifact name for the file
<version> the version of the file
<packaging> the packaging of the file e.g. jar
您是否查看http://mvnrepository.com/以检查您的依赖项是否存在?
如果不是,您应该自己将 jar 放到类路径中,或者在本地 maven 存储库的 %HOME%.m2\repository 中创建适当的目录。