Skip to content

Commit f66d669

Browse files
chore: use released Java SDK in dedup sample
Point the Java dynamic dedup sample at the published keploy-sdk 2.0.0 artifact instead of requiring a locally installed SDK snapshot. Signed-off-by: Asish Kumar <officialasishkumar@gmail.com>
1 parent 1621b6e commit f66d669

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

java-dedup/README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,10 @@ The Java SDK reads JaCoCo coverage in-process via `org.jacoco.agent.rt.RT.getAge
99
## Setup
1010

1111
```bash
12-
(cd ../../java-sdk && mvn -B -DskipTests -Dgpg.skip=true clean install -pl keploy-sdk -am)
1312
mvn -B -DskipTests clean package
1413
```
1514

16-
This installs the sibling SDK snapshot locally, builds the sample, produces `target/java-dedup-0.0.1-SNAPSHOT.jar`, and copies `target/jacocoagent.jar` next to it.
15+
This builds the sample against the released Keploy Java SDK, produces `target/java-dedup-0.0.1-SNAPSHOT.jar`, and copies `target/jacocoagent.jar` next to it.
1716

1817
## Run dedup natively
1918

java-dedup/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
<properties>
2121
<java.version>1.8</java.version>
22-
<keploy.sdk.version>0.0.1-SNAPSHOT</keploy.sdk.version>
22+
<keploy.sdk.version>2.0.0</keploy.sdk.version>
2323
<jacoco.version>0.8.12</jacoco.version>
2424
</properties>
2525

0 commit comments

Comments
 (0)