Skip to content

Commit

Permalink
IGNITE-22440 Fixed devnotes: added assembly instruction (#274)
Browse files Browse the repository at this point in the history
  • Loading branch information
lordgarrish authored Jun 11, 2024
1 parent dfeea51 commit dc3e83a
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions DEVNOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,18 @@
- JDK 8
- Maven 3.6.3+

### Build all Extensions
### Compile and install all Extensions

```shell
# Run from the Ignite Extension project root
mvn clean install -DskipTests -Pcheckstyle
```

### Build an Extension
### Compile and install an Extension

```shell
# Run from the Ignite Extension project root
mvn clean install -f modules/spring-boot-ext -Pcheckstyle -DskipTests
mvn clean install -f modules/cdc-ext -Pcheckstyle -DskipTests
```

or
Expand All @@ -30,6 +30,17 @@ or
mvn clean install -pl :ignite-aws-ext -am -Pcheckstyle -DskipTests
```

### Build an Extension assembly

Release archives will be created in the `target` directory:
- sources archive: `{extension}-src.zip`
- binary archive (if an extension provides): `{extension}-bin.zip`

```shell
# Run from the Ignite Extension project root
mvn clean package -pl :ignite-cdc-ext -am -DskipTests -Pextension-release
```

## Release Instructions

### Prerequisites
Expand Down

0 comments on commit dc3e83a

Please sign in to comment.