PakhomovAlexander commented on code in PR #3180:
URL: https://github.com/apache/ignite-3/pull/3180#discussion_r1497660732
##########
packaging/README.md:
##########
@@ -0,0 +1,35 @@
+Apache Ignite 3 Pakaging
+===
+
+## Client packages
+
+Client packages consists of the following components:
+
+* ignite-java-client
+* ignite-cpp-client (aka ignite3-client)
+* ignite-dotnet-client
+
+All of those components have packaging as:
+* ZIP (task `distZip`)
Review Comment:
I think we should also adjust `packaging/build.gradle`:
```groovy
task allDistZip(type: Zip) {
archiveBaseName = "ignite3"
dependsOn configurations.cliZip, configurations.dbZip // here clients
should be added as well.
def allZipFiles = configurations.cliZip + configurations.dbZip
allZipFiles.each {
from(zipTree(it))
}
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]