Skip to content

Commit

Permalink
Fix name issue in jitpack.io
Browse files Browse the repository at this point in the history
  • Loading branch information
feng-zh committed Nov 16, 2017
1 parent 9c7c664 commit 2e3601b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ Once finished or in progress, the aggregated tree is presented in screen, and nu

#### Download ####

Download latest version from <https://jitpack.io/com/github/feng-zh/threads/1.2.0/threads-1.2.0-jar-with-dependencies.jar>,
and rename it as `threads-jar-with-dependencies.jar`.
Download latest version from <https://jitpack.io/com/github/feng-zh/thread-dump/v1.2.0/thread-dump-v1.2.0-jar-with-dependencies.jar>,
and rename it as `thread-dump-jar-with-dependencies.jar`.

#### Build ####

Expand All @@ -55,12 +55,12 @@ cd thread-dump

mvn package
```
The build package is ready in `thread-dump/target/threads-jar-with-dependencies.jar`.
The build package is ready in `thread-dump/target/thread-dump-jar-with-dependencies.jar`.

#### Run ####

```shell
java -jar threads-jar-with-dependencies.jar 8080
java -jar thread-dump-jar-with-dependencies.jar 8080
```

The application will be started and listening on port 8080 in host. It can be accessed via `http://127.0.0.1:8080/threads/` (**NOTE:** Please rember to add tailer / in path in this version.)
Expand All @@ -74,13 +74,13 @@ Locate the weblogic installed folder, and copy two jar files `wlclient.jar` and
For Linux System:

```shell
java -classpath wlclient.jar:wljmxclient.jar -jar threads-jar-with-dependencies.jar 8080
java -classpath wlclient.jar:wljmxclient.jar -jar thread-dump-jar-with-dependencies.jar 8080
```

For Windows System:

```shell
java -classpath wlclient.jar;wljmxclient.jar -jar threads-jar-with-dependencies.jar 8080
java -classpath wlclient.jar;wljmxclient.jar -jar thread-dump-jar-with-dependencies.jar 8080
```

The use same step mentioned above.
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.hp.ts.rnd.tool.perf</groupId>
<artifactId>threads</artifactId>
<artifactId>thread-dump</artifactId>
<version>1.2.0</version>
<properties>
<maven.compiler.source>1.6</maven.compiler.source>
Expand Down

0 comments on commit 2e3601b

Please sign in to comment.