Skip to content

Commit 9ee2334

Browse files
authored
docs(readme): update keploy sdk version to latest (keploy#24)
1 parent 5fa117e commit 9ee2334

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,12 @@ Add *keploy-sdk* as a dependency to your *pom.xml*:
7171
<dependency>
7272
<groupId>io.keploy</groupId>
7373
<artifactId>keploy-sdk</artifactId>
74-
<version>N.N.N</version> (eg: 1.2.5)
74+
<version>N.N.N</version> (eg: 1.2.6)
7575
</dependency>
7676

7777
or to *build.gradle*:
7878

79-
implementation 'io.keploy:keploy-sdk:N.N.N' (eg: 1.2.5)
79+
implementation 'io.keploy:keploy-sdk:N.N.N' (eg: 1.2.6)
8080

8181
## Usage
8282

@@ -87,20 +87,20 @@ or to *build.gradle*:
8787
- **Run along with agent to mock external calls of your API 🤩🔥**
8888

8989
- Download the latest - Download the latest agent jar
90-
from [here](https://search.maven.org/artifact/io.keploy/keploy-sdk/1.2.5/jar) (eg: 1.2.5)
90+
from [here](https://search.maven.org/artifact/io.keploy/keploy-sdk/1.2.6/jar) (eg: 1.2.6)
9191

92-
- Prefix `-javaagent:` with absolute classpath of agent jar (eg: `-javaagent:<your full path to agent jar>/agent-1.2.5.jar`) is possible through 3 ways:-
92+
- Prefix `-javaagent:` with absolute classpath of agent jar (eg: `-javaagent:<your full path to agent jar>/agent-1.2.6.jar`) is possible through 3 ways:-
9393

9494
1. **Using Intellij :** Go to Edit Configuration-> add VM options -> paste _java agent_ edited above.
9595

9696
2. **Using Command Line :**
9797
```
98-
export JAVA_OPTS="$JAVA_OPTS -javaagent:<your full path to agent jar>/agent-1.2.5.jar"
98+
export JAVA_OPTS="$JAVA_OPTS -javaagent:<your full path to agent jar>/agent-1.2.6.jar"
9999
```
100100
101101
3. **Running via Tomcat Server :**
102102
```
103-
export CATALINA_OPTS="$CATALINA_OPTS -javaagent:<your full path to agent jar>/agent-1.2.5.jar"
103+
export CATALINA_OPTS="$CATALINA_OPTS -javaagent:<your full path to agent jar>/agent-1.2.6.jar"
104104
```
105105
106106
## Setup Employee-Manager App

0 commit comments

Comments
 (0)