diff options
author | 2018-09-20 12:27:40 +0100 | |
---|---|---|
committer | 2018-09-24 09:25:29 +0000 | |
commit | 0d7feec2e32f69a8e919f06f03df3ce46e78801d (patch) | |
tree | d712e56fb78bea085eb1bf9c04447a07d0f50341 /sidecar/rproxy/version.properties | |
parent | 6c3031ea90d5b51ae44a599c0cd0d95c057cf633 (diff) |
Initial drop of rProxy code
The Reverse Proxy sidecar is used to separate the responsibility of
authentication and authorization away from the primary microservice. In
conjunction with the Forward Proxy sidecar, it is responsible for
controlling access to the REST URL endpoints exposed by the primary
microservice, and propogating security credentials to downstream
microservices.
Change-Id: I5d80429e5422d7b3937cde73ac10c2ec00d264e8
Issue-ID: AAI-1604
Signed-off-by: Lee, Tian (tl5884) <TianL@amdocs.com>
Diffstat (limited to 'sidecar/rproxy/version.properties')
-rw-r--r-- | sidecar/rproxy/version.properties | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/sidecar/rproxy/version.properties b/sidecar/rproxy/version.properties new file mode 100644 index 0000000..14e3c2b --- /dev/null +++ b/sidecar/rproxy/version.properties @@ -0,0 +1,13 @@ +# Versioning variables +# Note that these variables cannot be structured (e.g. : version.release or version.snapshot etc... ) +# because they are used in Jenkins, whose plug-in doesn't support + +major=1 +minor=0 +patch=0 + +base_version=${major}.${minor}.${patch} + +# Release must be completed with git revision # in Jenkins +release_version=${base_version} +snapshot_version=${base_version}-SNAPSHOT
\ No newline at end of file |