Skip to content
Snippets Groups Projects
Commit b6226af1 authored by vkovtun's avatar vkovtun
Browse files

SSDM-14011: Created a build task that generates a ZIP artifact with JS sources.

parent 77127847
No related branches found
No related tags found
1 merge request!40SSDM-13578 : 2PT : Database and V3 Implementation - include the new AFS "free"...
plugins { plugins {
id "com.github.node-gradle.node" version "3.2.1" id 'com.github.node-gradle.node' version '3.2.1'
} }
apply from: '../build/javaproject.gradle' apply from: '../build/javaproject.gradle'
repositories { repositories {
ivy { ivy {
ivyPattern "https://sissource.ethz.ch/openbis/openbis-public/openbis-ivy/-/raw/main/[organisation]/[module]/[revision]/ivy.xml" ivyPattern "https://sissource.ethz.ch/openbis/openbis-public/openbis-ivy/-/raw/main/[organisation]/[module]/[revision]/ivy.xml"
...@@ -14,3 +13,10 @@ repositories { ...@@ -14,3 +13,10 @@ repositories {
dependencies { dependencies {
} }
task generateZip(type: Zip) {
archiveName 'api-data-store-server-javascript.zip'
from project.files('src/js').getAsFileTree()
}
build.dependsOn generateZip
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment