Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
ipgallery.common.cpp
/
Microservice
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Registry
Issues
0
Merge Requests
0
Pipelines
Wiki
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
319ca9a6
authored
Jun 21, 2018
by
Amir Aharon
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
upload script and package task
parent
8728d3c7
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
0 deletions
.vscode/tasks.json
README.md
script/upload_package.sh
.vscode/tasks.json
View file @
319ca9a6
...
...
@@ -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
...
...
README.md
View file @
319ca9a6
...
...
@@ -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
...
...
script/upload_package.sh
0 → 100755
View file @
319ca9a6
#!/bin/sh
if
[
-z
"
$1
"
]
||
[
-z
"
$2
"
]
then
echo
"Usage
$0
[version] [file]"
exit
fi
gradle uploadArchives
-Pcversion
=
$1
-Ppublish_file
=
$2
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment