# Maven on Azure
1. Install Maven with Homebrew `brew install mvn`
2. `mvn -v` displays installation location
3. In the `conf` folder there is the settings file `settings.xml`
4. [Create a personal access token on Azure](https://dev.azure.com/economy-of-things/_usersSettings/tokens) with Packaging Read & Write
5. Put the following with the access token in the `<servers>` seection of the settings file
```
<server>
<id>economy-of-things@Local</id>
<username>economy-of-things</username>
<password>[PERSONAL_ACCESS_TOKEN]</password>
</server>
```