diff options
author | Aijana Schumann <aijana.schumann@highstreet-technologies.com> | 2020-08-12 12:28:06 +0200 |
---|---|---|
committer | Aijana Schumann <aijana.schumann@highstreet-technologies.com> | 2020-08-12 12:29:48 +0200 |
commit | 3d02271058d2e59a71e49afdd866462f7b6ab1c6 (patch) | |
tree | bb42b3428055136a4a8f5def9c63e412390d40ef /sdnr/wt/odlux/framework/pom.xml | |
parent | cd29d2dd98b7c40bd4efb6a8705787ca35e99fe9 (diff) |
Switch odlux from Biermann-RestConf to RFC8040 interface
Switched rest-calls in odlux to use RFC8040 interface
Issue-ID: CCSDK-2565
Signed-off-by: Aijana Schumann <aijana.schumann@highstreet-technologies.com>
Change-Id: Ia59dd02bc6456bad648083146c0256f204e134d1
Diffstat (limited to 'sdnr/wt/odlux/framework/pom.xml')
-rw-r--r-- | sdnr/wt/odlux/framework/pom.xml | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/sdnr/wt/odlux/framework/pom.xml b/sdnr/wt/odlux/framework/pom.xml index c7d9c3295..db42ef1ac 100644 --- a/sdnr/wt/odlux/framework/pom.xml +++ b/sdnr/wt/odlux/framework/pom.xml @@ -46,7 +46,7 @@ <properties> <buildtime>${maven.build.timestamp}</buildtime> <distversion>ONAP Frankfurt (Neon, mdsal ${odl.mdsal.version})</distversion> - <buildno>56.139cd6d(20/07/08)</buildno> + <buildno>57.3e1d5cf(20/08/11)</buildno> <odlux.version>ONAP SDN-R | ONF Wireless for ${distversion} - Build: ${buildtime} ${buildno} ${project.version}</odlux.version> </properties> @@ -56,6 +56,10 @@ <directory>dist</directory> <targetPath>odlux</targetPath> </resource> + <resource> + <directory>src2/main/resources</directory> + <targetPath>odlux</targetPath> + </resource> </resources> <plugins> <plugin> @@ -172,12 +176,21 @@ <basedir>${project.build.directory}/classes/odlux</basedir> <includes> <include>app.js</include> + <include>version.json</include> </includes> <replacements> <replacement> <token>##odlux.version##</token> <value>${odlux.version}</value> </replacement> + <replacement> + <token>##buildno##</token> + <value>${buildno}</value> + </replacement> + <replacement> + <token>##build-timestamp##</token> + <value>${buildtime}</value> + </replacement> </replacements> </configuration> </plugin> |