summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorDan Timoney <dtimoney@att.com>2021-05-04 13:43:13 -0400
committerDan Timoney <dtimoney@att.com>2021-05-04 15:32:33 -0400
commit44da2779969ac4500dcae21eade3ce8462ef6b5a (patch)
tree5b5185402ed135d00abaaa8e6a086f9a7aa9774d /tools
parentf5c3473618497c35f14333ce134e90e1fed20e55 (diff)
Update versions for Aluminum SR3
Update versions for Aluminum SR3 Issue-ID: CCSDK-3285 Signed-off-by: Dan Timoney <dtimoney@att.com> Change-Id: Ic6c13e7f06f4402cf699b93e1ebbe931f81e194c
Diffstat (limited to 'tools')
-rwxr-xr-xtools/mkbom.sh25
1 files changed, 20 insertions, 5 deletions
diff --git a/tools/mkbom.sh b/tools/mkbom.sh
index f2615b84..65ec684e 100755
--- a/tools/mkbom.sh
+++ b/tools/mkbom.sh
@@ -43,15 +43,30 @@ do
groupId=$(echo $jar | rev | cut -d'/' -f4- | rev | tr '/' '.')
- echo " <dependency>"
- echo " <groupId>$groupId</groupId>"
- echo " <artifactId>$artifactId</artifactId>"
- echo " <version>$version</version>"
- echo " </dependency>"
+ echo " <dependency>"
+ echo " <groupId>$groupId</groupId>"
+ echo " <artifactId>$artifactId</artifactId>"
+ echo " <version>$version</version>"
+ echo " </dependency>"
done
cat <<END
</dependencies>
</dependencyManagement>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-deploy-plugin</artifactId>
+ <!-- This version supports the "deployAtEnd" parameter -->
+ <version>2.8</version>
+ <configuration>
+ <skip/>
+ <deployAtEnd>true</deployAtEnd>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
</project>
END