aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/framework/pom.xml
diff options
context:
space:
mode:
authorAijana Schumann <aijana.schumann@highstreet-technologies.com>2021-02-15 18:22:28 +0100
committerAijana Schumann <aijana.schumann@highstreet-technologies.com>2021-02-15 18:23:57 +0100
commit8515052e1a6de2de56effbc61c73d3aa80169a93 (patch)
tree8707b2b587890522b35cd7dd1b54ce4f006f1c3a /sdnr/wt/odlux/framework/pom.xml
parentdb20d36689c011333ed7216b64d3e987e473f1ee (diff)
Add OAuth support to odlux
Extend odlux to support oauth, support external login provider for sign-in Issue-ID: CCSDK-3167 Signed-off-by: Aijana Schumann <aijana.schumann@highstreet-technologies.com> Change-Id: Id5772e0026fa7ebda22c41c2620a7868598f41aa
Diffstat (limited to 'sdnr/wt/odlux/framework/pom.xml')
-rw-r--r--sdnr/wt/odlux/framework/pom.xml70
1 files changed, 68 insertions, 2 deletions
diff --git a/sdnr/wt/odlux/framework/pom.xml b/sdnr/wt/odlux/framework/pom.xml
index daedd9d3c..23854b55a 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>88.1c38886(20/12/04)</buildno>
+ <buildno>89.977e4de(21/02/10)</buildno>
<odlux.version>ONAP SDN-R | ONF Wireless for ${distversion} - Build: ${buildtime} ${buildno} ${project.version}</odlux.version>
</properties>
@@ -159,6 +159,24 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
</plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>properties-maven-plugin</artifactId>
+ <version>1.0.0</version>
+ <executions>
+ <execution>
+ <phase>initialize</phase>
+ <goals>
+ <goal>read-project-properties</goal>
+ </goals>
+ <configuration>
+ <files>
+ <file>${basedir}/../odlux.properties</file>
+ </files>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
<plugin>
<groupId>com.google.code.maven-replacer-plugin</groupId>
<artifactId>replacer</artifactId>
@@ -183,7 +201,7 @@
<token>##odlux.version##</token>
<value>${odlux.version}</value>
</replacement>
- <replacement>
+ <replacement>
<token>##buildno##</token>
<value>${buildno}</value>
</replacement>
@@ -191,6 +209,54 @@
<token>##build-timestamp##</token>
<value>${buildtime}</value>
</replacement>
+ <replacement>
+ <token>##odlux.framework.buildno##</token>
+ <value>${odlux.framework.buildno}</value>
+ </replacement>
+ <replacement>
+ <token>##odlux.apps.configurationApp.buildno##</token>
+ <value>${odlux.apps.configurationApp.buildno}</value>
+ </replacement>
+ <replacement>
+ <token>##odlux.apps.connectApp.buildno##</token>
+ <value>${odlux.apps.connectApp.buildno}</value>
+ </replacement>
+ <replacement>
+ <token>##odlux.apps.eventLogApp.buildno##</token>
+ <value>${odlux.apps.eventLogApp.buildno}</value>
+ </replacement>
+ <replacement>
+ <token>##odlux.apps.faultApp.buildno##</token>
+ <value>${odlux.apps.faultApp.buildno}</value>
+ </replacement>
+ <replacement>
+ <token>##odlux.apps.helpApp.buildno##</token>
+ <value>${odlux.apps.helpApp.buildno}</value>
+ </replacement>
+ <replacement>
+ <token>##odlux.apps.inventoryApp.buildno##</token>
+ <value>${odlux.apps.inventoryApp.buildno}</value>
+ </replacement>
+ <replacement>
+ <token>##odlux.apps.linkCalculationApp.buildno##</token>
+ <value>${odlux.apps.linkCalculationApp.buildno}</value>
+ </replacement>
+ <replacement>
+ <token>##odlux.apps.maintenanceApp.buildno##</token>
+ <value>${odlux.apps.maintenanceApp.buildno}</value>
+ </replacement>
+ <replacement>
+ <token>##odlux.apps.mediatorApp.buildno##</token>
+ <value>${odlux.apps.mediatorApp.buildno}</value>
+ </replacement>
+ <replacement>
+ <token>##odlux.apps.networkMapApp.buildno##</token>
+ <value>${odlux.apps.networkMapApp.buildno}</value>
+ </replacement>
+ <replacement>
+ <token>##odlux.apps.permanceHistoryApp.buildno##</token>
+ <value>${odlux.apps.permanceHistoryApp.buildno}</value>
+ </replacement>
</replacements>
</configuration>
</plugin>