本文介绍了Apache Ignite 2.7发行日期的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在寻找Ignite 2.7版本的发布日期,但是网络上没有任何信息.在apache网站上,发布日期为11月5日.但是最新版本是2.6.我已经下载了2.7每晚构建,但是我不知道如何在Maven中使用它.

I'm looking for Ignite 2.7 version release date, but there is no information over the web.On apache site release date is 5 Novermber. But the last version is 2.6.I've downloaded 2.7 nightly build, but I don't know how to use it with maven.

推荐答案

您可以在本地存储库中安装已下载的内容.然后,您可以在项目中使用它.

You can install what you've downloaded, in your local repository. Then you can use it in your project.

mvn install:install-file 
    -Dfile=path/to/your/jar.jar 
    -DgroupId=org.apache.ignite
    -DartifactId=ignite-core
    -Dversion=2.7.0 
    -Dpackaging=jar

在您的pom中:

<dependency>
    <groupId>org.apache.ignite</groupId>
    <artifactId>ignite-core</artifactId>
    <version>2.7.0</version>
</dependency>

这篇关于Apache Ignite 2.7发行日期的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-22 15:52