Please note that the artifact of this projects are (currently) not available on the Maven Central Repository. It can be access on the smartics artifact repository. If you want to access artifacts from this server in your Maven build, the recommended way would be to add it to the configuration of your own artifact server. If this is not feasible, the second option is to add the following snippet to the profiles section of your settings.xml . Code Block Placeholder |
---|
code-language | HTML and XML |
---|
| <profile>
<id>${corporationId}-repositories</id>
<repositories>
<repository>
<id>${corporationId}</id>
<url>${info.server.repo.group}</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>${corporationId}</id>
<url>${info.server.repo.group}</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
</profile> |
You may also add the repositories to your Maven POM file, but usually adding them to your settings is recommended. |