wrap up:
Node v5.0.0 (Lima HF) is out https://github.com/aeternity/aeternity/releases/tag/v5.0.0:
Supported by:
Mainnet HF is on 30/10/2019
2 Likes
we from kryptokrauts are were also focusing to support Lima with the upcoming v2.0.0 release. you can follow the progress on our github repo:
v2.0.0 will be released in the near future and will also contain a major refactoring. you can already test the features with the actual snapshot. the documentation will also be updated in the near future and can be found here:
snapshot-integration with maven
<repositories>
<repository>
<id>oss-snapshot-local</id>
<url>https://oss.jfrog.org/artifactory/oss-snapshot-local</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.kryptokrauts</groupId>
<artifactId>aepp-sdk-java</artifactId>
<version>2.0.0-SNAPSHOT</version>
</dependencies>
snapshot-integration with gradle
repositories {
maven { url "https://oss.jfrog.org/artifactory/oss-snapshot-local" }
}
compile "com.kryptokrauts:aepp-sdk-java:2.0.0-SNAPSHOT"
we - especially @mitch_lbw - are also actively working on a code-generator which allows you to generate java-classes to interact with your smart contract written in sophia. under the hood those classes will make use of our sdk and provide a really convenient way to interact with smart contracts 
2 Likes
yesterday we released a new version of the java-sdk that supports the Lima hardfork:
note: there are breaking changes and we will try to publish an article and an updated documentation as soon as possible
4 Likes