diff options
author | DylanB95EST <dylan.byrne@est.tech> | 2021-12-14 16:34:38 +0000 |
---|---|---|
committer | DylanB95EST <dylan.byrne@est.tech> | 2022-01-28 14:32:11 +0000 |
commit | 63132cec2c18363a8224646039cc23b6144d8e6c (patch) | |
tree | 0821e401a14655ecba60d213f5dbacac12e8f0b4 /cps-parent | |
parent | a5ce86d02493f141848f9d609c65883d2198894a (diff) |
Support 'public' Cm Handle Properties
Add support for new Public Additional Properties list to Register CM Handles API
Issue-ID: CPS-677
Change-Id: I6efc88734da2416f72f71a403622e519398b502d
Signed-off-by: DylanB95EST <dylan.byrne@est.tech>
Diffstat (limited to 'cps-parent')
-rwxr-xr-x | cps-parent/pom.xml | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/cps-parent/pom.xml b/cps-parent/pom.xml index a51d6943a3..2e0528e973 100755 --- a/cps-parent/pom.xml +++ b/cps-parent/pom.xml @@ -46,6 +46,31 @@ </sonar.coverage.jacoco.xmlReportPaths> </properties> + <profiles> + <profile> + <id>Windows</id> + <activation> + <os> + <family>Windows</family> + </os> + </activation> + <properties> + <script.executor>python</script.executor> + </properties> + </profile> + <profile> + <id>unix</id> + <activation> + <os> + <family>unix</family> + </os> + </activation> + <properties> + <script.executor>python3</script.executor> + </properties> + </profile> + </profiles> + <dependencyManagement> <dependencies> <dependency> @@ -377,6 +402,28 @@ <groupId>org.sonarsource.scanner.maven</groupId> <artifactId>sonar-maven-plugin</artifactId> </plugin> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>exec-maven-plugin</artifactId> + <version>1.6.0</version> + <executions> + <execution> + <id>generate-csv</id> + <phase>prepare-package</phase> + <goals> + <goal>exec</goal> + </goals> + </execution> + </executions> + <configuration> + <executable>${script.executor}</executable> + <workingDirectory>../cps-ri/src/main/resources/</workingDirectory> + <arguments> + <argument>yangResourceCsvGenerator.py</argument> + <argument>dmi-registry@2021-12-13</argument> + </arguments> + </configuration> + </plugin> </plugins> </build> </project> |