Apache Ignite 2.7 release date

走远了吗. 提交于 2019-12-11 19:48:33

问题


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.


回答1:


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

In your pom:

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



回答2:


Apache Ignite 2.7 is not released yet. You can track the release process in this thread on the Apache Ignite dev list: http://apache-ignite-developers.2346864.n4.nabble.com/Apache-Ignite-2-7-Last-Mile-td36359i40.html



来源:https://stackoverflow.com/questions/53477746/apache-ignite-2-7-release-date

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!