Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<goal>wget</goal>
</goals>
<configuration>
<url>https://wso2.org/jenkins/job/products/job/micro-integrator/3049/artifact/distribution/target/wso2mi-4.5.0.zip</url>
<url>https://github.com/wso2/product-micro-integrator/releases/download/v4.5.0-rc/wso2mi-4.5.0-rc.zip</url>
<unpack>false</unpack>
<outputDirectory>${project.basedir}/resources/server/</outputDirectory>
</configuration>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ echo BASE_DIR: $BASE_DIR, PRODUCT_VERSION: $PRODUCT_VERSION and SERVER_PATH_ROOT

# Unzip micro integrator archive
echo "Unzipping wso2mi-$PRODUCT_VERSION Pack."
unzip $SERVER_PATH_ROOT/wso2mi-$PRODUCT_VERSION.zip -d $SERVER_PATH_ROOT
unzip $SERVER_PATH_ROOT/wso2mi-$PRODUCT_VERSION-rc.zip -d $SERVER_PATH_ROOT

# Cleanup
rm $SERVER_PATH_ROOT/wso2mi-$PRODUCT_VERSION.zip
rm $SERVER_PATH_ROOT/wso2mi-$PRODUCT_VERSION-rc.zip

# Rename as "microesb" (this is the static name used in EI Tooling code)
echo "Rename runtime distribution directory as microesb"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
<goal>wget</goal>
</goals>
<configuration>
<url>https://wso2.org/jenkins/job/products/job/integration-control-plane/32/artifact/distribution/target/wso2-integration-control-plane-1.2.0.zip</url>
<url>https://github.com/wso2/integration-control-plane/releases/download/v1.2.0-rc/wso2-integration-control-plane-1.2.0-rc.zip</url>
<unpack>false</unpack>
<outputDirectory>${project.build.directory}/products</outputDirectory>
</configuration>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ unzip $PRODUCT_PATH_ROOT/WSO2-Integration-Studio-macosx.cocoa.aarch64.zip -d $PR
unzip $PRODUCT_PATH_ROOT/WSO2-Integration-Studio-win32.win32.x86_64.zip -d $PRODUCT_PATH_WIN_64

# Unzip mi-dashboard to relevant packages
unzip $PRODUCT_PATH_ROOT/wso2-integration-control-plane-${DASHBOARD_VERSION}.zip -d $PRODUCT_PATH_LINUX_64/
unzip $PRODUCT_PATH_ROOT/wso2-integration-control-plane-${DASHBOARD_VERSION}.zip -d $PRODUCT_PATH_MACOS/IntegrationStudio.app/Contents/Eclipse/
unzip $PRODUCT_PATH_ROOT/wso2-integration-control-plane-${DASHBOARD_VERSION}.zip -d $PRODUCT_PATH_MACOS_AARCH64/IntegrationStudio.app/Contents/Eclipse/
unzip $PRODUCT_PATH_ROOT/wso2-integration-control-plane-${DASHBOARD_VERSION}.zip -d $PRODUCT_PATH_WIN_64/
unzip $PRODUCT_PATH_ROOT/wso2-integration-control-plane-${DASHBOARD_VERSION}-rc.zip -d $PRODUCT_PATH_LINUX_64/
unzip $PRODUCT_PATH_ROOT/wso2-integration-control-plane-${DASHBOARD_VERSION}-rc.zip -d $PRODUCT_PATH_MACOS/IntegrationStudio.app/Contents/Eclipse/
unzip $PRODUCT_PATH_ROOT/wso2-integration-control-plane-${DASHBOARD_VERSION}-rc.zip -d $PRODUCT_PATH_MACOS_AARCH64/IntegrationStudio.app/Contents/Eclipse/
unzip $PRODUCT_PATH_ROOT/wso2-integration-control-plane-${DASHBOARD_VERSION}-rc.zip -d $PRODUCT_PATH_WIN_64/

# Rename as "mi-dashboard" (this is the static name used in EI Tooling code)
mv $PRODUCT_PATH_LINUX_64/wso2-integration-control-plane-$DASHBOARD_VERSION $PRODUCT_PATH_LINUX_64/mi-dashboard
Expand Down Expand Up @@ -206,8 +206,8 @@ zip -r $PRODUCT_PATH_ROOT/WSO2-Integration-Studio-win32.win32.x86_64.zip *
popd

# Cleanup
rm $PRODUCT_PATH_ROOT/wso2mi-$PRODUCT_VERSION.zip
rm $PRODUCT_PATH_ROOT/wso2-integration-control-plane-$DASHBOARD_VERSION.zip
rm $PRODUCT_PATH_ROOT/wso2mi-$PRODUCT_VERSION-rc.zip
rm $PRODUCT_PATH_ROOT/wso2-integration-control-plane-$DASHBOARD_VERSION-rc.zip
rm $PRODUCT_PATH_ROOT/apache-maven-${APACHE_MAVEN_VERSION}-bin.zip
rm -rf $APICTL_DISTRIBUTION_PATH
rm -rf $PRODUCT_PATH_ROOT/temp
Expand Down
Loading