-
Type: Improvement
-
Status: Resolved
-
Priority: Minor
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: coldstorage-2021.0.0, coldstorage-10.0.0
-
Component/s: Glacier
-
Tags:
-
Team:UI
Currently, when we checkout the cold storage repo, it is not possible to build the project unless we have the `maven-internal` repository defined in our local maven `settings.xml` configuration. To be consistent with Web UI, we should add the missing configuration to the `pom.xml` file.
<repository> <id>maven-internal</id> <url>https://packages.nuxeo.com/repository/maven-internal/</url> <releases> <enabled>true</enabled> </releases> <snapshots> <updatePolicy>always</updatePolicy> <enabled>true</enabled> </snapshots> </repository>
We need to confirm if we should also add the `public-snapshot` repository.
<repository> <id>public-snapshot</id> <url>http://maven.nuxeo.org/nexus/content/groups/public-snapshot</url> <releases> <enabled>false</enabled> </releases> <snapshots> <updatePolicy>always</updatePolicy> <enabled>true</enabled> </snapshots> </repository>
- Is referenced in