“参考文献 https://www.cnblogs.com/xihehua/p/9639045.html https://www.cnblogs.com/jimisun/p/7842537.html
(文件路径不建议用有中文的,最好自己新建一个那样方便好多)
( 注意放的位子,我的在55行 你的可能不是你自己看看 <settings.....>的位子放后面就好了)
<mirror>
<id>alimaven</id>
<mirrorOf>central</mirrorOf>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
</mirror>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<configuration>
<source>1.12</source>
<target>1.12</target>
</configuration>
</plugin>
</plugins>
</build>
为了保持一致,因为我本机jdk是1.13的,所以此处我们使用1.12版本的 从setting中我们看出使用的是3.6的maven,因此配置版本也修改为3.6版本,接下来就成功了
<dependencies>
<dependency>
<groupId>tech.tablesaw</groupId>
<artifactId>tablesaw-core</artifactId>
<version>LATEST</version>
</dependency>
</dependencies>
Alt+Enter
本地仓库
和 中央仓库