Skip to content

Latest commit

 

History

History
32 lines (20 loc) · 700 Bytes

CONTRIBUTING.md

File metadata and controls

32 lines (20 loc) · 700 Bytes

Contributing to the Akka SDK

FIXME contribution guidelines like in other LB projects

Project tips

Build scripts

  1. See .sh scripts in the root directory.

  2. Set the maven plugin version to the version sbt generated:

publishLocally.sh or

```shell
cd akka-javasdk-maven
mvn versions:set -DnewVersion="0.7...-SNAPSHOT"
mvn install
git checkout .
```
  1. Pass that version to the sample projects when building:

updateSamplesVersions.sh or

```shell
cd samples/protobuf-key-value-shopping-cart
mvn -Dakka-javasdk.version="0.7...-SNAPSHOT" compile
```

Be careful not to accidentally check in the maven pom.xml files with changed version.