This is an automated email from the ASF dual-hosted git repository.

namelchev pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite-extensions.git


The following commit(s) were added to refs/heads/master by this push:
     new dc3e83ae IGNITE-22440 Fixed devnotes: added assembly instruction (#274)
dc3e83ae is described below

commit dc3e83aeb51f664b4eb195aa60d22e521563cb28
Author: Andrey Nadyktov <lordgarr...@gmail.com>
AuthorDate: Tue Jun 11 11:20:26 2024 +0300

    IGNITE-22440 Fixed devnotes: added assembly instruction (#274)
---
 DEVNOTES.md | 17 ++++++++++++++---
 1 file changed, 14 insertions(+), 3 deletions(-)

diff --git a/DEVNOTES.md b/DEVNOTES.md
index 94dc1221..a9a886fa 100644
--- a/DEVNOTES.md
+++ b/DEVNOTES.md
@@ -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
@@ -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

Reply via email to