Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 18 additions & 2 deletions schemata/quickstart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,24 @@ $ sdk list maven
* Install the Amazon Coretto JDK17 (or whatever else JDK you prefer,
but it has to be some JDK with version 17):
```bash
$ sdk install 17.0.6-amzn
$ sdk install java 17.0.6-amzn
```

* Install Maven:
```bash
$ sdk install 3.9.1
$ sdk install maven 3.9.1
```

## Protobuf
* If not already done so, Install Protocol Buffer Compiler https://grpc.io/docs/protoc-installation/
On Mac:
```bash
$ brew install protobuf
```

On Linux, using apt or apt-get:
```bash
$ apt install -y protobuf-compiler
```

## Data contracts - Schema Quickstart
Expand Down Expand Up @@ -103,6 +115,10 @@ $ popd
```bash
$ pushd ~/dev/infra/data-contracts/schemata/quickstart
```
* Create a target folder
```bash
$ mkdir target
```

* Copy the just generated Schemata JAR artifact:
```bash
Expand Down