...
This requires you to have a ${user.home}/.m2/settings.xml specifying your credentials to upload release artifacts
<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<servers>
<server>
<id>alfresco.snapshot.repo</id>
<username>tbaeyens</username>
<password>Ojadnot8</password>
</server>
<server>
<id>alfresco.release.repo</id>
<username>tbaeyens</username>
<password>Ojadnot8</password>
</server>
</servers>
</settings>
| Code Block |
|---|
<?xml version="1.0" encoding="UTF-8"?> <settings xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"> <servers> <server> <id>alfresco.release.repo</id> <username>yourusername</username> <password>******</password> </server> </servers> </settings> |
...
