Skip to content

Commit bff20d6

Browse files
committed
Adding Maven example to doc.
1 parent d6a071f commit bff20d6

File tree

1 file changed

+20
-1
lines changed

1 file changed

+20
-1
lines changed

README.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,26 @@ to compile and package the sources into a JAR file (usual output directory is 't
1616
mvn install
1717
```
1818

19-
If you do not can / want using Maven, check the binary Jar furnished in each [release](https://github.com/BeauneNuits/OVH-API-Java/releases).
19+
You can also fetch artifcats from a custom repository :
20+
21+
```
22+
<repositories>
23+
<repository>
24+
<id>nexus-rabian-public-snapshots</id>
25+
<url>http://unsec.maven.rabian.fr/content/repositories/snapshots</url>
26+
</repository>
27+
</repositories>
28+
29+
<dependencies>
30+
<dependency>
31+
<groupId>fr.rabian.ovhApi</groupId>
32+
<artifactId>OVH-API-core</artifactId>
33+
<version>0.1.1</version>
34+
</dependency>
35+
</dependencies>
36+
```
37+
38+
If you cannot / wont use Maven, check the binary Jar furnished in each [release](https://github.com/BeauneNuits/OVH-API-Java/releases).
2039

2140
## Sample usage
2241

0 commit comments

Comments
 (0)