diff options
author | Dan Timoney <dtimoney@att.com> | 2023-10-13 16:39:54 -0400 |
---|---|---|
committer | highstreetherbert <herbert.eiselt@highstreet-technologies.com> | 2023-11-19 19:45:05 +0100 |
commit | 013bee7cdc2f2db170fa9235d29958a7fc5b1104 (patch) | |
tree | cadebf39d7ff4370475930e2ced9f34823a400bb /installation | |
parent | 38c044d1b25a5702220e5be32111ca7e71f87139 (diff) |
Update to version 2.6.1 of parent pom
Update to version 2.6.1 of parent pom to pick up Argon SR2 versions
Issue-ID: CCSDK-3944
Change-Id: Idba0a162fd079f35d420e62f3026f6c8dfc1d983
Signed-off-by: Dan Timoney <dtimoney@att.com>
Signed-off-by: highstreetherbert <herbert.eiselt@highstreet-technologies.com>
Diffstat (limited to 'installation')
-rw-r--r-- | installation/sdnc/pom.xml | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/installation/sdnc/pom.xml b/installation/sdnc/pom.xml index 06d4ac26..5d1fa8f7 100644 --- a/installation/sdnc/pom.xml +++ b/installation/sdnc/pom.xml @@ -30,6 +30,7 @@ <docker.buildArg.https_proxy>${https_proxy}</docker.buildArg.https_proxy> <docker.autoCreateCustomNetworks>true</docker.autoCreateCustomNetworks> + <odl.shiro.version>0.17.11</odl.shiro.version> <!-- SDNR Features Boot --> <sdnr.features.boot>ccsdk-features-all</sdnr.features.boot> @@ -38,7 +39,6 @@ mvn:org.onap.ccsdk.features/ccsdk-features-all/${ccsdk.features.version}/xml/features,\ mvn:org.onap.ccsdk.features.sdnr.northbound/sdnr-northbound-all/${ccsdk.features.version}/xml/features,\ mvn:org.onap.ccsdk.features.sdnr.wt/sdnr-wt-feature-aggregator/${ccsdk.features.version}/xml/features,\ - mvn:org.onap.ccsdk.features.sdnr.wt/sdnr-wt-feature-aggregator-oauth/${ccsdk.features.version}/xml/features,\ mvn:org.onap.ccsdk.features.sdnr.wt/sdnr-wt-feature-aggregator-devicemanager/${ccsdk.features.version}/xml/features,\ mvn:org.onap.ccsdk.features.sdnr.wt/sdnr-wt-feature-aggregator-devicemanager-base/${ccsdk.features.version}/xml/features </sdnr.features.repo> @@ -400,6 +400,28 @@ </artifactItems> </configuration> </execution> + <execution> + <id>copy-with-alternalte-repo-2</id> + <phase>generate-sources</phase> + <goals> + <goal>copy</goal> + </goals> + <configuration> + <artifactItems> + <artifactItem> + <groupId>com.highstreet-technologies.aaa</groupId> + <artifactId>aaa-authn-api</artifactId> + <version>0.17.8</version> + <outputDirectory>${project.build.directory}/docker-stage/system/org/opendaylight/aaa/aaa-authn-api/${odl.shiro.version}</outputDirectory> + <destFileName>aaa-authn-api-${odl.shiro.version}.jar</destFileName> + <excludes>*</excludes> + </artifactItem> + </artifactItems> + <overWriteReleases>false</overWriteReleases> + <overWriteSnapshots>true</overWriteSnapshots> + <overWriteIfNewer>true</overWriteIfNewer> + </configuration> + </execution> </executions> </plugin> <plugin> |