Commit 319ca9a6 by Amir Aharon

upload script and package task

parent 8728d3c7
......@@ -43,6 +43,11 @@
]
},
{
"label": "make package",
"type": "shell",
"command": "docker exec -it devenv make package",
},
{
"label": "start-gdbserver",
"type": "shell",
// not using -it so that it can be a preLaunchTask
......
......@@ -4,6 +4,8 @@
# 1.5.0
- add new rest server Evpp
- add new Evpp http client, currently NOT TO BE USED!
- script/build_microservice_docker.sh: add a script to build the microservice develop image as base for other c++ apps
- script/upload_pckage.sh: add a script to upload Microservice package to archiva as artifect
# 1.4.2
- moving to municipalitybank.com cloud
# 1.4.1
......
#!/bin/sh
if [ -z "$1" ] || [ -z "$2" ]
then
echo "Usage $0 [version] [file]"
exit
fi
gradle uploadArchives -Pcversion=$1 -Ppublish_file=$2
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment