- Add missing repositories in pom.xml.
- Update README.md
This commit is contained in:
parent
b9cde0f1a9
commit
97d81ce478
|
@ -5,5 +5,5 @@
|
||||||
## Install and run:
|
## Install and run:
|
||||||
- Run **git clone** and then **cd uoa-repository-manager-service**.
|
- Run **git clone** and then **cd uoa-repository-manager-service**.
|
||||||
- Provide all not-set or redacted configurations, inside the **src/main/resources/application.properties** file.
|
- Provide all not-set or redacted configurations, inside the **src/main/resources/application.properties** file.
|
||||||
- Build the app with: `mvn clean install -s <settings-file>`
|
- Build the app with: `mvn clean install`
|
||||||
- Run the app with: `java -jar ./target/uoa-repository-manager-service.jar`
|
- Run the app with: `java -jar ./target/uoa-repository-manager-service.jar`
|
||||||
|
|
24
pom.xml
24
pom.xml
|
@ -367,6 +367,30 @@
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
<repositories>
|
<repositories>
|
||||||
|
<repository>
|
||||||
|
<id>dnet45-bootstrap-snapshot</id>
|
||||||
|
<name>D-Net 45 Bootstrap Snapshot</name>
|
||||||
|
<url>https://maven.research-infrastructures.eu/nexus/content/repositories/dnet45-bootstrap-snapshot</url>
|
||||||
|
<releases>
|
||||||
|
<enabled>false</enabled>
|
||||||
|
</releases>
|
||||||
|
<snapshots>
|
||||||
|
<enabled>true</enabled>
|
||||||
|
</snapshots>
|
||||||
|
<layout>default</layout>
|
||||||
|
</repository>
|
||||||
|
<repository>
|
||||||
|
<id>dnet45-bootstrap-release</id>
|
||||||
|
<name>D-Net 45 Bootstrap Release</name>
|
||||||
|
<url>https://maven.research-infrastructures.eu/nexus/content/repositories/dnet45-bootstrap-release</url>
|
||||||
|
<releases>
|
||||||
|
<enabled>true</enabled>
|
||||||
|
</releases>
|
||||||
|
<snapshots>
|
||||||
|
<enabled>false</enabled>
|
||||||
|
</snapshots>
|
||||||
|
<layout>default</layout>
|
||||||
|
</repository>
|
||||||
<repository>
|
<repository>
|
||||||
<id>dnet-deps</id>
|
<id>dnet-deps</id>
|
||||||
<name>dnet-dependencies</name>
|
<name>dnet-dependencies</name>
|
||||||
|
|
Loading…
Reference in New Issue