我使用依赖项创建一个Maven项目:
<dependency>
<groupId>org.mybatis.generator</groupId>
<artifactId>mybatis-generator-core</artifactId>
<version>1.3.3-SNAPSHOT</version>
</dependency>
但它不起作用。错误是:
缺少工件org.mybatis.generator:mybatis-generator-core:jar:1.3.3-SNAPSHOT
答案 0 :(得分:2)
如果您确实要使用该依赖项的1.3.3-SNAPSHOT版本,则需要添加另一个存储库。 SNAPSHOT依赖项通常在Maven Central上不可用,而这个不是。但是它可以在Sonatype Snapshot repository。
中使用因此,你需要add the following repository到你的POM或你的Maven设置:
<repository>
<id>snapshots-repo</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
如果您不想添加该存储库,则需要使用最新版本1.3.2,并且该版本可在Maven Central上使用:
<dependency>
<groupId>org.mybatis.generator</groupId>
<artifactId>mybatis-generator-core</artifactId>
<version>1.3.2</version>
</dependency>