我正在使用带有以下依赖关系的jitpack的github存储库:
<dependency>
<groupId>com.github.bys1</groupId>
<artifactId>taigalib</artifactId>
<version>1.2.1</version>
<scope>provided</scope>
</dependency>
出于某种原因,在从1.1版更新到1.2及更高版本1.2.1后,它没有更新类eu.taigacraft.lib.sql.MySQL。在1.2和1.2.1中,添加了方法createStatement(),get(String)和update(String)。更新到1.2及更高版本1.2.1后,我无法使用该方法;不存在。我尝试过以下方法:
我想知道它为什么不加载新方法以及如何解决这个问题。
提前谢谢。
答案 0 :(得分:1)
Are you using jitpack repository?
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io/</url>
</repository>
Also try deleting the existing jar file of 1.1 version and then updating maven project and compiling it.
You could find the jar via somthing like: sudo find / -name '*1.1*jar'