Skip to content

Commit cac5ec5

Browse files
robbinspgtobespc
authored andcommitted
UPdate to 1.2.1-SNAPSHOT (#77)
1 parent 4bc9a08 commit cac5ec5

File tree

7 files changed

+15
-15
lines changed

7 files changed

+15
-15
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -81,12 +81,12 @@ Javametrics requires a Java option to be set in order to load the agent. A [jvm
8181

8282
```
8383
# Load Javametrics Java agent
84-
-javaagent:<path_to_javametrics_agent_dir>/javametrics-agent-1.2.0.jar
84+
-javaagent:<path_to_javametrics_agent_dir>/javametrics-agent-1.2.1.jar
8585
```
8686
If you have built the agent locally, your path_to_javametrics_agent_dir will need to point to your clone of javametrics.
8787
e.g.
8888
```
89-
-javaagent:<path_to_git_home>/javametrics/javaagent/target/javametrics-agent-1.2.0.jar
89+
-javaagent:<path_to_git_home>/javametrics/javaagent/target/javametrics-agent-1.2.1.jar
9090
```
9191
* NOTE, if you move the javametrics-agent to another directory you need to make sure you take the asm folder with it. The asm folder is required for the agent to run as it contains files that the agent needs
9292

@@ -114,12 +114,12 @@ You also need to add the following dependencies to your pom.xml:
114114
<dependency>
115115
<groupId>com.ibm.runtimetools</groupId>
116116
<artifactId>javametrics-spring</artifactId>
117-
<version>1.2.0</version>
117+
<version>1.2.1</version>
118118
</dependency>
119119
<dependency>
120120
<groupId>com.ibm.runtimetools</groupId>
121121
<artifactId>javametrics-agent</artifactId>
122-
<version>1.2.0</version>
122+
<version>1.2.1</version>
123123
</dependency>
124124
<dependency>
125125
<groupId>org.glassfish</groupId>
@@ -155,4 +155,4 @@ This project is released under an Apache 2.0 open source license.
155155
This project uses a semver-parsable X.0.Z version number for releases, where X is incremented for breaking changes to the public API described in this document and Z is incremented for bug fixes **and** for non-breaking changes to the public API that provide new function.
156156

157157
## Version
158-
1.2.0
158+
1.2.1

dashboard/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<groupId>com.ibm.runtimetools</groupId>
4-
<version>1.2.0</version>
4+
<version>1.2.1-SNAPSHOT</version>
55
<modelVersion>4.0.0</modelVersion>
66
<artifactId>javametrics-dash</artifactId>
77
<packaging>war</packaging>
@@ -57,7 +57,7 @@
5757
<dependency>
5858
<groupId>com.ibm.runtimetools</groupId>
5959
<artifactId>javametrics-agent</artifactId>
60-
<version>1.2.0</version>
60+
<version>1.2.1-SNAPSHOT</version>
6161
<scope>provided</scope>
6262
</dependency>
6363
<dependency>

javaagent/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<groupId>com.ibm.runtimetools</groupId>
4-
<version>1.2.0</version>
4+
<version>1.2.1-SNAPSHOT</version>
55
<modelVersion>4.0.0</modelVersion>
66
<artifactId>javametrics-agent</artifactId>
77
<name>javaagent</name>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.ibm.runtimetools</groupId>
55
<artifactId>javametrics</artifactId>
66
<packaging>pom</packaging>
7-
<version>1.2.0</version>
7+
<version>1.2.1-SNAPSHOT</version>
88
<modules>
99
<module>javaagent</module>
1010
<module>dashboard</module>

prometheus/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<groupId>com.ibm.runtimetools</groupId>
4-
<version>1.2.0</version>
4+
<version>1.2.1-SNAPSHOT</version>
55
<modelVersion>4.0.0</modelVersion>
66
<artifactId>javametrics-prometheus</artifactId>
77
<packaging>war</packaging>
@@ -51,7 +51,7 @@
5151
<dependency>
5252
<groupId>com.ibm.runtimetools</groupId>
5353
<artifactId>javametrics-agent</artifactId>
54-
<version>1.2.0</version>
54+
<version>1.2.1-SNAPSHOT</version>
5555
<scope>provided</scope>
5656
</dependency>
5757
<dependency>

rest/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<groupId>com.ibm.runtimetools</groupId>
4-
<version>1.2.0</version>
4+
<version>1.2.1-SNAPSHOT</version>
55
<modelVersion>4.0.0</modelVersion>
66
<artifactId>javametrics-rest</artifactId>
77
<packaging>war</packaging>
@@ -49,7 +49,7 @@
4949
<dependency>
5050
<groupId>com.ibm.runtimetools</groupId>
5151
<artifactId>javametrics-agent</artifactId>
52-
<version>1.2.0</version>
52+
<version>1.2.1-SNAPSHOT</version>
5353
<scope>provided</scope>
5454
</dependency>
5555
<dependency>

spring/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>com.ibm.runtimetools</groupId>
66
<artifactId>javametrics-spring</artifactId>
7-
<version>1.2.0</version>
7+
<version>1.2.1-SNAPSHOT</version>
88
<packaging>jar</packaging>
99

1010
<name>javametrics-spring</name>
@@ -58,7 +58,7 @@
5858
<dependency>
5959
<groupId>com.ibm.runtimetools</groupId>
6060
<artifactId>javametrics-agent</artifactId>
61-
<version>1.2.0</version>
61+
<version>1.2.1-SNAPSHOT</version>
6262
<scope>provided</scope>
6363
</dependency>
6464

0 commit comments

Comments
 (0)