Import from internal git
This commit is contained in:
36
architecture/api/templates/settings.xml
Normal file
36
architecture/api/templates/settings.xml
Normal file
@@ -0,0 +1,36 @@
|
||||
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
|
||||
https://maven.apache.org/xsd/settings-1.0.0.xsd">
|
||||
<localRepository/>
|
||||
<interactiveMode/>
|
||||
<usePluginRegistry/>
|
||||
<offline/>
|
||||
<pluginGroups/>
|
||||
<servers>
|
||||
<!--
|
||||
In order to deploy a file to the registry and passing credentials to the command line like below
|
||||
mvn deploy:deploy-file \
|
||||
-Dfile=my-app.jar \
|
||||
-DgroupId=my.group.id \
|
||||
-DartifactId=my-artifact \
|
||||
-Dversion=0.1.1 \
|
||||
-Dpackaging=jar \
|
||||
-DgeneratePom=true \
|
||||
-DrepositoryId=my-repository-id \
|
||||
-Durl=my-repository-url \
|
||||
-Drepo.id=my-repository-id \
|
||||
-Drepo.username=admin \
|
||||
-Drepo.password=password
|
||||
-->
|
||||
<server>
|
||||
<id>${repo.id}</id>
|
||||
<username>${repo.username}</username>
|
||||
<password>${repo.password}</password>
|
||||
</server>
|
||||
</servers>
|
||||
<mirrors/>
|
||||
<proxies/>
|
||||
<profiles/>
|
||||
<activeProfiles/>
|
||||
</settings>
|
||||
Reference in New Issue
Block a user