File tree Expand file tree Collapse file tree 1 file changed +20
-1
lines changed Expand file tree Collapse file tree 1 file changed +20
-1
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,26 @@ to compile and package the sources into a JAR file (usual output directory is 't
16
16
mvn install
17
17
```
18
18
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 ) .
20
39
21
40
## Sample usage
22
41
You can’t perform that action at this time.
0 commit comments