首页 > 代码库 > 在 maven 中使用 snapshots 版本的 jar 包

在 maven 中使用 snapshots 版本的 jar 包

1. 首先需要在 pom.xml 中配置如下的 snapshots 仓库

<repositories>
    <repository>
        <id>oss-snapshots</id>
        <url>https://oss.sonatype.org/content/repositories/snapshots</url>
        <releases>
            <enabled>false</enabled>
        </releases>
        <snapshots>
            <enabled>true</enabled>
        </snapshots>
    </repository>
</repositories>

2. 然后加入 snapshots 依赖

<dependency>
    <groupId>com.github.subchen</groupId>
    <artifactId>jetbrick-all</artifactId>
    <version>1.1.0-SNAPSHOT</version>
</dependency>

3. 如果使用 Eclipse 的 Maven 插件,还需要选择如下的更新方式

Maven -> Update Projects (Alt + F5)

图片

4. 手动下载 snapshots

https://oss.sonatype.org/content/repositories/snapshots/com/github/subchen/