Skip to content

Commit f7e1a5e

Browse files
authored
Merge pull request #108 from tobespc/release180
bump version to 1.8.0 for release
2 parents 43bc00f + 1569e27 commit f7e1a5e

File tree

9 files changed

+19
-19
lines changed

9 files changed

+19
-19
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -89,12 +89,12 @@ Javametrics requires a Java option to be set in order to load the agent. A [jvm
8989

9090
```
9191
# Load Javametrics Java agent
92-
-javaagent:<path_to_javametrics_agent_dir>/javametrics-agent-1.7.0.jar
92+
-javaagent:<path_to_javametrics_agent_dir>/javametrics-agent-1.8.0.jar
9393
```
9494
If you have built the agent locally, your path_to_javametrics_agent_dir will need to point to your clone of javametrics.
9595
e.g.
9696
```
97-
-javaagent:<path_to_git_home>/javametrics/javaagent/target/javametrics-agent-1.7.0.jar
97+
-javaagent:<path_to_git_home>/javametrics/javaagent/target/javametrics-agent-1.8.0.jar
9898
```
9999
* 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
100100

@@ -129,12 +129,12 @@ You also need to add the following dependencies to your pom.xml:
129129
<dependency>
130130
<groupId>com.ibm.runtimetools</groupId>
131131
<artifactId>javametrics-spring</artifactId>
132-
<version>1.7.0</version>
132+
<version>1.8.0</version>
133133
</dependency>
134134
<dependency>
135135
<groupId>com.ibm.runtimetools</groupId>
136136
<artifactId>javametrics-agent</artifactId>
137-
<version>1.7.0</version>
137+
<version>1.8.0</version>
138138
</dependency>
139139
<dependency>
140140
<groupId>org.glassfish</groupId>
@@ -170,4 +170,4 @@ This project is released under an Apache 2.0 open source license.
170170
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.
171171

172172
## Version
173-
1.7.0
173+
1.8.0

codewind-spring/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>com.ibm.runtimetools</groupId>
66
<artifactId>javametrics-codewind-spring</artifactId>
7-
<version>1.7.0</version>
7+
<version>1.8.0</version>
88
<packaging>jar</packaging>
99

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

codewind/pom.xml

+2-2
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.7.0</version>
4+
<version>1.8.0</version>
55
<modelVersion>4.0.0</modelVersion>
66
<artifactId>javametrics-codewind</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.7.0</version>
54+
<version>1.8.0</version>
5555
<scope>provided</scope>
5656
</dependency>
5757
<dependency>

dashboard/pom.xml

+2-2
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.7.0</version>
4+
<version>1.8.0</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.7.0</version>
60+
<version>1.8.0</version>
6161
<scope>provided</scope>
6262
</dependency>
6363
<dependency>

javaagent/pom.xml

+1-1
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.7.0</version>
4+
<version>1.8.0</version>
55
<modelVersion>4.0.0</modelVersion>
66
<artifactId>javametrics-agent</artifactId>
77
<name>javaagent</name>

pom.xml

+1-1
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.7.0</version>
7+
<version>1.8.0</version>
88
<modules>
99
<module>javaagent</module>
1010
<module>codewind</module>

prometheus/pom.xml

+2-2
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.7.0</version>
4+
<version>1.8.0</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.7.0</version>
54+
<version>1.8.0</version>
5555
<scope>provided</scope>
5656
</dependency>
5757
<dependency>

rest/pom.xml

+2-2
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.7.0</version>
4+
<version>1.8.0</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.7.0</version>
52+
<version>1.8.0</version>
5353
<scope>provided</scope>
5454
</dependency>
5555
<dependency>

spring/pom.xml

+2-2
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.7.0</version>
7+
<version>1.8.0</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.7.0</version>
61+
<version>1.8.0</version>
6262
<scope>provided</scope>
6363
</dependency>
6464

0 commit comments

Comments
 (0)