Можно ли добавить для запуска mvn как команду с профилем или репозиторием или другим элементом, а не из settings.xml?
, например
<settings xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.1.0 http://maven.apache.org/xsd/settings-1.1.0.xsd" xmlns="http://maven.apache.org/SETTINGS/1.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <localRepository>/home/vcap/app/.java-buildpack/tomcat/temp/maven_repo_6194547201292702175</localRepository> <interactiveMode>false</interactiveMode> <profiles> <profile> <repositories> <repository> <id>public.nexus</id> <url>https://repo.maven.apache.org/maven2/</url> </repository> </profile> </profiles> <activeProfiles> <activeProfile>public.nexus</activeProfile> </activeProfiles> </settings>