1234567891011121314151617181920212223242526 |
- <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">
- <localRepository />
- <interactiveMode />
- <usePluginRegistry />
- <offline />
- <pluginGroups />
- <servers>
- <server>
- <id>nexus-projects.itemis.de</id>
- <username>${P2_SERVER_USER}</username>
- <password>${P2_SERVER_PASSWORD}</password>
- </server>
- <server>
- <id>yakindu-commons</id>
- <username>${P2_SERVER_USER}</username>
- <password>${P2_SERVER_PASSWORD}</password>
- </server>
- </servers>
- <proxies />
- <profiles />
- <activeProfiles />
- </settings>
|