| Content changes |
|---|
== Repositories == Release and Snapshot repositories are write protected for artifacts deployment. Release Managers (or anyone who do a ##deploy##) have to declare their credentials for the OW2 repositories in their ##$HOME/.m2/settings.xml##: {{code}} <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 http://maven.apache.org/xsd/settings-1.0.0.xsd"> <servers> <server> <id>ow2.release</id> <username>[Your OW2 Forge username here]</username> <password>[Your OW2 Forge password here]</password> </server> <server> <id>ow2.snapshot</id> <username>[Your OW2 Forge username here]</username> <password>[Your OW2 Forge password here]</password> </server> </servers> </settings> {{/code}} |