You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+12-4
Original file line number
Diff line number
Diff line change
@@ -21,10 +21,18 @@ This plugin supports the 3 main calls to the 3scale backend:
21
21
Install
22
22
=======
23
23
24
-
This is a [Maven](http://maven.apache.org/) project, download it and install it as follows
25
-
- add a dependency to this artifact inside your pom.xml by opening the pom.xml inside the 3scale artifact and retrieving the groupId, artifactid and version from lines 5,6 and 9 of 3scale's pom.
26
-
- install the artifact to your repository as described here:
This is a [Maven](http://maven.apache.org/) project, to add it to your project you can use one of the following options:
25
+
- add a dependency to this artifact inside your `pom.xml` like below (specify the version you need):
26
+
```
27
+
<dependency>
28
+
<groupId>net.3scale</groupId>
29
+
<artifactId>3scale-api</artifactId>
30
+
<version>3.0.4</version>
31
+
</dependency>
32
+
```
33
+
and run `mvn install` inside your project.
34
+
35
+
- download the [JAR file](https://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22net.3scale%22%20AND%20a%3A%223scale-api%22) for the version you want to use and install it to your repository using the instructions described here: http://maven.apache.org/guides/mini/guide-3rd-party-jars-local.html
0 commit comments